參考:http://www.2cto.com/os/201304/199770.html html
Nginx: error while loading shared libraries: libpcre.so.1解決java
Shell代碼 linux
[ew69@localhost conf]# /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
確認已經安裝PCRE: nginx
Shell代碼 shell
[ew69@SCLABHADOOP01 lib]$ cd /lib [ew69@SCLABHADOOP01 lib]$ ls *pcre* libpcre.so.0 libpcre.so.0.0.1 [hadoop@SCLABCLUS01 nginx]$ find / -type f -name *libpcre.so.*
添加軟連接:centos
Shell代碼 oop
[ew69@SCLABHADOOP01 lib]$ ln -s /lib/libpcre.so.0.0.1 /lib/libpcre.so.1
前面在通常的linux上能夠解決此問題.spa
注: 在有的操做系統上面,安裝pcre後,安裝的位置爲/usr/local/lib/*pcre*code
在redhat 64位機器之上有這樣的狀況. (我是這種狀況 centos)htm
在redhat 64位機器上, nginx可能讀取的pcre文件爲/lib64/libpcre.so.1文件.
因此在改用下面的軟鏈接:
Shell代碼
[hadoop@SCLABHADOOP01 ~]$ ln -s /usr/local/lib/libpcre.so.1 /lib64/