博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx的点点
阅读量:5081 次
发布时间:2019-06-13

本文共 748 字,大约阅读时间需要 2 分钟。

说是在新的服务器上面配置nginx,我就直接从其他服务器上面复制过去的,并不是自己安装的,结果报错

进入nginx安装目录sbin下,输入命令./nginx -t

报错:./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory

解决办法:原来是libpcre.so.1依赖文件没有,在lib64下面没有libpcre.so.1这个文件,在网络上面也可以自己下载,我是直接从原来的里面复制过来的

然后就成功了

[root@localhost sbin]# ./nginx -t

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

 

在后面启动的时候还是报错啊  what the fuck--------

[root@localhost sbin]# ./nginx -s reload

nginx: [error] invalid PID number "" in "/data/logs/nginx.pid"

然后输入了 下   /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

重新启动

 

转载于:https://www.cnblogs.com/cdm023/p/7324354.html

你可能感兴趣的文章
Python内置函数(29)——help
查看>>
Android TextView加上阴影效果
查看>>
《梦断代码》读书笔记(三)
查看>>
AngularJS学习篇(一)
查看>>
关于Xshell无法连接centos6.4的问题
查看>>
spring security 11种过滤器介绍
查看>>
代码实现导航栏分割线
查看>>
大数据学习系列(8)-- WordCount+Block+Split+Shuffle+Map+Reduce技术详解
查看>>
Mysql性能调优
查看>>
ES6内置方法find 和 filter的区别在哪
查看>>
Android实现 ScrollView + ListView无滚动条滚动
查看>>
硬件笔记之Thinkpad T470P更换2K屏幕
查看>>
getElement的几中属性介绍
查看>>
HTML列表,表格与媒体元素
查看>>
设计器 和后台代码的转换 快捷键
查看>>
STL容器之vector
查看>>
数据中心虚拟化技术
查看>>
复习文件操作
查看>>
SQL Server 使用作业设置定时任务之一(转载)
查看>>
第二阶段冲刺-01
查看>>