当nginx 中报错 时 nginx报错 nginx: [alert] kill(25903, 1) failed (3: No such process) 通过在nginx/sbin,目录下 运行命令 ./nginx ,可看到如下错误: nginx: [emerg] bind() to 0.0.0.0:8090 failed (98: Address already in use) 这说明nginx端口8090 被占用,可以使用命令 netstat -apn  | grep 8090 查看端口…
解决 nginx: [alert] kill(189, 1) failed (3: No such process) [root@localhost/]# nginx -s reloadnginx: [alert] kill(189, 1) failed (3: No such process)  杀死189进程,可是并没有[root@localhost /]# whereis ngnixngnix:[root@localhost/]# [root@localhost /]# find / -n…
centos 启动docker服务报错: Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details. 1,create daemon.json in /etc/docker/ 2, put this in it: { &q…
问题 修改nginx配置参数后,使用nginx -t检查配置. 提示successfull后就可以使用 nginx -s reload来重新加载配置 我配置的过程中遇到这样的问题,就是绑定了主机名后,重新加载配置时会出现警告 nginx: [warn] conflicting server name "localhost" on xxx.xxx.xxx.xxx:80, ignored 方法 网上有说,是两三个搞了同一个ip和端口号或名字的,要我们改. 而且这个也只是警告,不影响使用.…
nginx: [warn] conflicting server name "localhost" on 0.0.0.0:80, ignored 修改nginx配置参数后,使用nginx -t检查配置. 提示successfull后就可以使用 nginx -s reload来重新加载配置 我配置的过程中遇到这样的问题,就是绑定了主机名后,重新加载配置时会出现警告 nginx: [warn] conflicting server name "localhost" on…
cd nginx安装目录下/conf/nginx.conf 查看pid文件存放路径  (如果自己知道就不用执行上面这一步) 然后删除这个nginx.pid文件 然后再次杀掉nginx进程 搞定…
卸载和删除都使用过了,没有起到效果,然后用了如下的方案,进行解决: CentOS 从 Yum 源安装配置 Mariadb 2017.03.01 WangYan 学习笔记  热度 7℃ 一.安装 MariaDB 1.添加 MariaDB Yum 源 cat >/etc/yum.repos.d/MariaDB.repo<<'EOF' [mariadb] name = MariaDB baseurl = http://mirrors.ustc.edu.cn/mariadb/yum/10.2/c…
1. nginx报错 nginx: [error] invalid PID number "" in "/usr/local/nginx/logs/nginx.pid" 2. 解决方法 执行/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf然后重启 ./nginx -s reload…
错误 第一次探索nginx,执行以下命令时: nginx -s reload 报出错误: nginx: [error] invalid PID number "" in ... *此时忽略掉了warn警告信息 排查 Step 1 baidu搜索了一众文章,大都是说执行: nginx -c /etc/nginx/nginx.conf *地址改成自己的(如,win10下,F:\install\nginx-1.16.1\logs\nginx.conf) 参考例: nginx: [error]…