`

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

 
阅读更多

在CentOS 6.2 64bit上编译安装nginx-1.21出错

[root@CDN01 sbin]# ./nginx
./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory

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

[root@CDN01 sbin]# ldd $(which /usr/local/app/nginx/sbin/nginx)
        linux-vdso.so.1 =>  (0x00007fff4d78b000)
        libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f7fa9545000)
        libcrypt.so.1 => /lib64/libcrypt.so.1 (0x00007f7fa930e000)
        libpcre.so.1 => not found
        libc.so.6 => /lib64/libc.so.6 (0x00007f7fa8f6c000)
        /lib64/ld-linux-x86-64.so.2 (0x00007f7fa9766000)
        libfreebl3.so => /lib64/libfreebl3.so (0x00007f7fa8d0a000)
        libdl.so.2 => /lib64/libdl.so.2 (0x00007f7fa8b05000)

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

[root@CDN01 sbin]# ln -s /usr/local/lib/libpcre.so.1 /lib64

然后在启动nginx就OK了!
 
PS:看来linux 64bit的系统,编译安装的时候,默认的lib文件都是放于32位目录下,得手动链接下,得特别注意下!

分享到:
评论

相关推荐

    Nginx常见错误

    #### 一、启动错误:`sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory` **问题描述**: 在尝试启动Nginx时,可能会遇到如下的错误...

    Nginx常见错误及解决方法.doc

    sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory 这种错误是由于环境中缺少 libpcre.so.1 文件所致。解决方法是创建一个软链接: ...

    Nginx1.8.0安装简述

    error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory 五、启动 Nginx 安装完成后,需要启动 Nginx 服务器: /usr/local/webserver/nginx/sbin/...

    Nginx启动常见错误及解决方法

    登陆服务器之后进到nginx使用./nginx -s reload重新读取配置文件,发现报nginx: [error] open() “/usr/local/nginx/logs/nginx.pid” failed (2: No such file or directory)错误,进到logs文件发现的确没有nginx....

    libpcre.so.0

    centos6 pcre库

    centos下nginx安装操作文档

    error while loading shared libraries: libpcre.so.0: cannot open shared object file: No such file or directory ``` 这通常是因为系统找不到所需的库文件。解决方法是创建一个软链接指向正确的库文件位置: ``...

    nginx+redis+tomcat分布式负载均衡遇到问题解决文档

    nginx+redis+tomcat分布式负载均衡遇到问题解决文档;部署nginx、redis、tomcat时出现的一些常见问题解决方式 ex:Nginx启动错误:error while loading shared libraries: libpcre.so.1

    nginx.docx教程

    - 如果出现“nginx: error while loading shared libraries: libpcre.so.1”的错误,需要检查 libpcre 的版本是否正确。 3. **启动** - `/nginx/sbin/nginx` 4. **测试** - 访问 `http://192.168.182.129:80` 来...

    ngnix安装.docx

    3. 如果启动时遇到 "error while loading shared libraries: libpcre.so.1" 错误,需要确保依赖库已正确链接。可以通过 `whereis libpcre.so.1` 查找库文件,然后创建软链接: ``` ln -s /usr/local/lib/libpcre.so....

    Nignx服务器部署

    - 当遇到共享库加载错误时,如`error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory`,可通过创建软链接的方式解决。 - 为了保证服务的正常运行,建议...

    Centos 6.5 64位中Nginx详细安装部署教程

    如果遇到如error while loading shared libraries: libpcre.so.1: cannot open shared object ***这类错误,说明需要手动创建软连接来解决依赖问题。 最后,启动Nginx服务器,检查其状态是否正常。这通常通过使用...

Global site tag (gtag.js) - Google Analytics