码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx 启动出错 error while loading shared libraries: libpcre.so.1

时间:2016-01-17 00:01:21      阅读:408      评论:0      收藏:0      [点我收藏+]

标签:nginx 启动出错 error while loading shared libraries: libpcre.so.1

在 centos 6.5  64位上编译安装nginx1.63语法检查出错
[root @localhost conf]# /usr/local/nginx/sbin/nginx -t

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

从错误看出是缺少lib文件导致,进一步查看下
[root @localhost conf]# ldd $(which /usr/local/nginx/sbin/nginx)
linux-gate.so.1 =>  (0x0071b000)
libpthread.so.0 => /lib/libpthread.so.0 (0×00498000)
libcrypt.so.1 => /lib/libcrypt.so.1 (0×00986000)
libpcre.so.1 => not found
libcrypto.so.6 => /lib/libcrypto.so.6 (0×00196000)
libz.so.1 => /lib/libz.so.1 (0×00610000)
libc.so.6 => /lib/libc.so.6 (0x002d7000)
/lib/ld-linux.so.2 (0x006a8000)

libdl.so.2 => /lib/libdl.so.2 (0x008c3000)

可以看出 libpcre.so.1 => not found 并没有找到,

进入/lib64目录中手动链接下      #32位在/lib下
[root @localhost lib64]# ln -s libpcre.so.0.0.1 libpcre.so.1

[root @localhost lib]# /usr/local/nginx/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

然后在启动nginx  ok 了

/usr/local/nginx/sbin/nginx -t[root @localhost lib]# ps -ef |grep nginx
root      9539     1  0 19:06 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx
www       9540  9539  0 19:06 ?        00:00:00 nginx: worker process

本文出自 “boyhack” 博客,请务必保留此出处http://461205160.blog.51cto.com/274918/1735651

Nginx 启动出错 error while loading shared libraries: libpcre.so.1

标签:nginx 启动出错 error while loading shared libraries: libpcre.so.1

原文地址:http://461205160.blog.51cto.com/274918/1735651

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!