./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
时间: 2023-09-27 11:08:33 浏览: 314
libstdc++.so.6: 无法打开共享对象文件: 没有那个文件或目录
5星 · 资源好评率100%
这个错误通常是由于缺少 libpcre 库文件导致的。你可以尝试通过以下命令安装 libpcre 库文件:
- 对于 Ubuntu/Debian 系统:
```
sudo apt-get install libpcre3
```
- 对于 CentOS/RHEL 系统:
```
sudo yum install pcre-devel
```
安装完成后,再次运行 nginx 应该就不会报错了。
阅读全文