当前位置: 代码迷 >> Ruby/Rails >> nginx error while loading shared libraries: libpcre.so.1
  详细解决方案

nginx error while loading shared libraries: libpcre.so.1

热度:462   发布时间:2016-04-29 02:09:17.0
nginx error while loading shared libraries: libpcre.so.1:

linux 64位安装nginx后启动出错报以下错误

1
2
3
[root@localhost nginx-1.3.0]# /usr/local/nginx/sbin/nginx
error while loading shared libraries: libpcre.so.1:
cannot open shared object file: No such file or directory

从错误看出是缺少lib文件导致,进一步查看下

?

1
2
3
4
5
6
7
8
9
10
[root@localhost nginx-1.3.0]# ldd $(which /usr/local/nginx/sbin/nginx)
linux-vdso.so.1 => (0x00007fff4d5ff000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fea7e357000)
libcrypt.so.1 => /lib64/libcrypt.so.1 (0x00007fea7e120000)
libpcre.so.1 => not found
libz.so.1 => /lib64/libz.so.1 (0x00007fea7df09000)
libc.so.6 => /lib64/libc.so.6 (0x00007fea7db76000)
/lib64/ld-linux-x86-64.so.2 (0x00007fea7e57d000)
libfreebl3.so => /lib64/libfreebl3.so (0x00007fea7d913000)
libdl.so.2 => /lib64/libdl.so.2 (0x00007fea7d70f000)

可以看出 libpcre.so.1 => not found 并没有找到,进入/lib64目录中手动链接下

1
2
[root@localhost /]# cd lib64/
[root@localhost lib64]# ln -s libpcre.so.0.0.1 libpcre.so.1

然后启动nginx就ok了

  相关解决方案