mac环境 80端口被占用 禁用1024以下端口 问题
来源:2-21 文件服务器搭建及原理讲解
Doubles_Z3470738
2017-10-12
老师Nginx配置转发 mac环境 发现如下问题
nginx: [emerg] bind() to 0.0.0.0:80 failed (13: Permission denied)
server {
listen 80;
autoindex on;
server_name www.imooc.com;
index index.html index.htm index.jsp index.php;
#error_page 404 /404.html;
if ( $query_string ~* ".*[\;'\<\>].*" ) {
return 404;
}
location / {
proxy_pass http://127.0.0.1:8080;
add_header Access-Control-Allow-Origin *;
}
}
由于mac 禁用1024以下端口 所以报错, 设置为1024以上就可以进行转发
由于80是默认端口, 有什么方法能够直接在mac环境访问80端口呢?
1回答
-
Geely
2017-10-12
你好,我的mac其实也装了nginx。。但是80端口是好使的呀..........好神奇.....同学可以通过lsof查一下 哪些占用了80端口 ,看看哪些进程,看看是否可以kill掉
另外,看帖子看帖子看帖子,重要的说三遍哈
我给大家整理了这个,有问题可以来看看先找一下。 肯定有你想要的哈
部署环境的话 ,建议看下文章最后一小段哟~
尽快进入咱们QQ群哟~~
课程项目思维导图及线上环境、测试环境、部署linux和windows等解答
http://www.imooc.com/article/20193
【重点】问答区常见问题整理
http://www.imooc.com/article/18998
课程项目QQ群分享手记
http://www.imooc.com/article/19094
找工作的季节之简历及找工作的分享
http://www.imooc.com/article/19998
项目环境、vsftpd、linux、mysql等各种配置、软件下载
http://learning.happymmall.com
课程求10分好评哇谢谢啦~~(づ ̄ 3 ̄)づ
042017-10-15
相似问题