解决spawn-fcgi:child exited with: 127报错

简介: 解决spawn-fcgi:child exited with: 127报错

spawn-fcgi:child exited with: 127


原因:没有找到动态库


输入指令:ldd 你要运行的程序名


来查看缺少的库,如图我确少的是 libfcgi.so.0


每个人缺少的库可能不一样,下面的操作也要根据你缺的库名进行操作



解决方案


先执行命令,查找所缺文件位置,比如我的(你实际操作时候一定要记住库名换成自己的,-name后面)


find usr/local/lib/ -name "libfcgi.so"



得到库文件所在路径


再执行


sudo vi /etc/ld.so.conf


在文件里添加你得到的库文件路径,之后保存退出



最后执行


sudo ldconfig


再回到原来目录重新编译运行就成功了


相关文章
|
6天前
|
Java 应用服务中间件
Process exited with an error: 1 (Exit value: 1) 问题处理
本文介绍了在本地启动项目时遇到“Process exited with an error: 1”错误的解决过程。作者首先排除了配置文件修改的影响,通过分析错误信息,推测为端口占用问题,并使用 `netstat -ano` 命令检查端口占用情况,最终通过终止占用端口的进程解决了问题。
|
3月前
|
缓存 资源调度 JavaScript
Nodejs 命令行调用 exec 与 spawn 差异--- 解决 spawn yarn ENOENT error
Nodejs 命令行调用 exec 与 spawn 差异--- 解决 spawn yarn ENOENT error
|
应用服务中间件 PHP nginx
PHP ERROR: Unable to create the PID file (/usr/var/run/php-fpm.pid).: No such file or directory (2)
PHP ERROR: Unable to create the PID file (/usr/var/run/php-fpm.pid).: No such file or directory (2)
246 1
|
Java 应用服务中间件 容器
Tomcat报错 严重: A child container failed during start
Tomcat报错 严重: A child container failed during start
164 0
|
6月前
|
应用服务中间件 nginx
ngx_http_fastdfs_process_init pid=44362023/05/13 09:31:23 [alert] 2964#0: worker process 4436 exite
ngx_http_fastdfs_process_init pid=44362023/05/13 09:31:23 [alert] 2964#0: worker process 4436 exite
32 0
|
应用服务中间件 nginx
[error] OpenEvent(“Global\ngx_reload_11812“) failed (2: The system cannot find the file specified
[error] OpenEvent(“Global\ngx_reload_11812“) failed (2: The system cannot find the file specified
|
算法 关系型数据库 SQL