nginx

关注公众号 jb51net

关闭
首页 > 网站技巧 > 服务器 > nginx > Nginx无法启动10013

解决Nginx无法启动 -10013: An attempt was made to access a socket in a way forbidden by its access permission的问题

作者:rib-pet

这篇文章主要给大家介绍了解决用nginx -t 发成Nginx无法启动报错10013: An attempt was made to access a socket in a way forbidden by its access permissions的问题,需要的朋友可以参考下

Nginx无法启动

使用nginx -t 发成Nginx无法启动;

错误提示:10013: An attempt was made to access a socket in a way forbidden by its access permissions

错误原因: Nginx conf 文件里面的端口被占用

解决方法:

使用端口查找命令一个个找端口,确定被占用的端口

令行检查 netstat -aon |findstr “3817”,一旦确认被占用,可以采用,更换端口的方式。然后继续执行

nginx -t 来检查nginx配置没有问题

最后重启一下nginx就解决问题了。

查找端口

netstat -aon |findstr “:端口号”

以上就是解决Nginx无法启动 -10013: An attempt was made to access a socket in a way forbidden by its access permission的问题的详细内容,更多关于Nginx无法启动10013的资料请关注脚本之家其它相关文章!

您可能感兴趣的文章:
阅读全文