**
**
nginx初次使用报错
**
1.nginx启动报错(1113: No mapping for the Unicode character exists in the target multi-byte code page)
原因:解压的路径里面包含有中文的缘故,只要把解压后的文件剪切到没有包含中文的目录即可解决问题。
2.nginx: [emerg] bind() to 0.0.0.0:9999 failed (10013: An attempt was made to access a socket in a way forbidden by its access permissions)
原因: 指定的端口 xx被其他进程占用。
检查 xx端口是否被占用的命令是: netstat -ano | findstr 0.0.0.0:xx 或 netstat -ano | findstr “xx”
3.nginx: [emerg] invalid number of arguments in “root” directive in E:\nginx-1.18.0/conf/nginx.conf:46
原因:地址中存在空格。“46”指的是错误的行数。
**