如何更改cpanel默认端口?

时间:2011-08-03 14:59:19

标签: linux apache cpanel

我有一台服务器,在该服务器上cpanel正在2083端口上运行。我需要这个url来配置我的其他服务。我想将端口2083更改为8088.我必须在哪里进行更改。 我检查了他的httpd.conf,因为他们写了

RewriteCond %{HTTP_HOST} ^cpanel\.
RewriteCond %{HTTPS} on
RewriteRule ^/(.*) https://127.0.0.1:2083/$1 [P]

因此,我在此文件中需要做的更改才能更改cpanel。

我检查了cpanel / APACHE_CONFIG,但我没有得到任何提示。

3 个答案:

答案 0 :(得分:2)

您可以在/var/cpanel/cpanel.config

修改该文件

您可以找到此值:

port=2082

我相信这是可以更改的默认cPanel端口。

答案 1 :(得分:2)

更改cpanel.config中的端口号对我不起作用

所以我使用了内部端口重定向,即将端口8088上的所有流量内部路由到端口2083。

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 8088 -j REDIRECT --to-port 2083

答案 2 :(得分:1)

You can change the cPanel port in /var/cpanel/cpanel.config file. Search for this line
--------------------
port=2082
----------------------
After changing the port, then run these two commands for it to take effect:

# /usr/local/cpanel/whostmgr/bin/whostmgr2 --updatetweaksettings
# /etc/init.d/httpd restart

via:http://linuxworldweb.blogspot.co.uk/2012/01/how-to-change-cpanel-port.html