在apache中绑定非http标准端口

时间:2022-09-10 15:20:14

默认端口是80,我们修改为81
1.修改apache配置文件 httpd.conf

Listen 81

2.增加selinux中http的端口

semanage port -a -t http_port_t -p tcp 81

3.增加iptables中可接受新的端口

iptables -I INPUT -p tcp --dport 81 -j ACCEPT 

4.最后重启apache服务

#service httpd stop
#service httpd start

其他:
如果有报”Permission denied: make_sock: could not bind to address”的问题,可以参考下面2篇文章
http://blog.csdn.net/maoxiang/article/details/5720464
http://blog.sina.com.cn/s/blog_7e56997901016bw7.html