吉佳 发表于 2016-12-26 07:11:07

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

linux 64位安装nginx后启动出错报以下错误
1
2
3
# /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
# 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
# cd lib64/
# ln -s libpcre.so.0.0.1 libpcre.so.1



然后启动nginx就ok了
页: [1]
查看完整版本: nginx error while loading shared libraries: libpcre.so.1: