解决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


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


相关文章
|
开发框架 Ubuntu 应用服务中间件
FastCGI与spawn-fcgi安装与配置
FastCGI与spawn-fcgi安装与配置
816 0
FastCGI与spawn-fcgi安装与配置
|
4月前
|
缓存 资源调度 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)
268 1
|
Java 应用服务中间件 容器
Tomcat报错 严重: A child container failed during start
Tomcat报错 严重: A child container failed during start
197 0
|
7月前
|
应用服务中间件 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
35 0
|
Linux Windows
胆战心惊-Kernel Panic -- not syncing: attempted to kill init
关闭了Redhat,重新启动,就遇到Kernel Panic -- not syncing: attempted to kill init,并有这样的提示:CPU has been disabled by guest os. Power off or resset。
2030 0
|
算法 关系型数据库 SQL