如何更改cpanel默认端口?

发布于 2024-11-27 20:38:18 字数 328 浏览 1 评论 0原文

我有一台服务器,该服务器上的 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 但没有得到任何提示。

I have one server and on that server cpanel is running on 2083 port. I need this url for configure my other service. I want to change port 2083 to 8088. Where i have to make changes.
I checked my httpd.conf in that they wrote

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

So is there any change what i have to do in this file to change cpanel.

I checked cpanel/APACHE_CONFIG but i didnt get any hint.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夏见 2024-12-04 20:38:18

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

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

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

changing port number in cpanel.config didn't work for me

So I used the internal port redirection i.e route all traffic on port 8088 internally to port 2083.

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 8088 -j REDIRECT --to-port 2083
跨年 2024-12-04 20:38:18

您可以在 /var/cpanel/cpanel.config 修改文件。

您可以找到此值:

port=2082

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

You can modify the file at /var/cpanel/cpanel.config

You can find this value:

port=2082

I believe this is the default cPanel port that can be changed.

七七 2024-12-04 20:38:18
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

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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文