步骤很简单:点击Config按钮,可以看到有两个配置文件httpd.conf和httpd-ssl.conf;现在要根据端口号错误来更改apache的端口号,如果是port 443错误,更改http-ssl.conf文件中的Listen监听端口,如果是80错误,更改httpd.conf文件中Listen
打开httpd.conf文件,找到设置端口的配置信息如下:
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
打开httpd-ssl.conf文件,找到设置端口的配置信息如下:
#
# When we also provide SSL we have to listen to the
# standard HTTP port (see above) and to the HTTPS port
#
# Note: Configurations that use IPv6 but not IPv4-mapped addresses need two
# Listen directives: "Listen [::]:443" and "Listen 0.0.0.0:443"
#
Listen 443
ps:配置文件比较长,眼睛不好找,按Ctrl+F查找关键字就快多了,比如直接找80或者443就行了,马上跳到该段的配置信息了。
直接更改下Listen的端口号就可以。
Apache的端口号是在其目录下的 httpd.conf 这个文件中设置的。
Apache是跨平台的软件,在linux/windows/unix下都有相应的版本。
找到apache目录下的 httpd.conf, 使用vi 打开,找到 port=80 这一行, 把80改成在此服务器上没有用到的端口号,保存退出。
然后重新启动apache进程即可。
如果你用rpm包安装的apache,那么你的主配置文件应该是在/etc/httpd/conf/httpd.conf这里;
如果你用tar包安装的apache,那么应该在你apache安装目录下的conf/httpd.conf这里;
如果apache是在/usr/local/apache2安装的,那么主配置文件就在/usr/local/apache2/conf/httpd.conf这里.
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)