Nginx:各种问题

1、nginx:command not found

使用ll查看文件权限,看nginx的权限是否为rw-r--r--

如果是的话,说明该文件现在没有执行权限。

使用指令chmod 755 ./sbin/nginx把该文件的可执行权限开启。

 

2、auto/options: No such file or directory

 出现于:bash ./configure配置nginx时

解决方案,先cd进入configure所在目录,再用bash ./configure,不然即使是bash 绝对路径/configure也不行。

3、nginx: [emerg] unexpected "}" in /usr/local/nginx/nginx-1.20.2/conf/nginx.conf:45

在写nginx配置文件时,最后的分号忘记写了

4、nginx: [emerg] duplicate location

说明出现了一个重复的location,去把duplicate location所在的那行注释掉即可。

有时你用vim会发现该location只在这个conf文件中出现了一次,但还是出现了这个报错,那说明在这段之前某个位置有用include引入了其他文件,而重复的部分就在其他文件中。

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

posted @ 2024-10-23 13:51  ShineLe  阅读(12)  评论(0编辑  收藏  举报