随笔分类 - 故障排错
摘要:一般是windows下文本编辑问题,上传到Linux服务器识别不了,最简单解决方法,就把脚本内容复制粘贴到Linux服务器脚本保存就行
阅读全文
摘要:1、检查一下防火墙或者selinux
阅读全文
摘要:问题:访问xxx.xxx.xxx域名时,返回500状态码,查看Nginx日志发现报错,Uncaught exception 'SmartyException' with message 'unable to write f Fatal error: Uncaught exception 'Smart
阅读全文
CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Therefore
摘要:# 版本太新,选择指定版本 pip3 uninstall cryptography pip3 install cryptography==36.0.2
阅读全文
摘要:# 更新pip pip3 install --upgrade pip
阅读全文
摘要:# 在make后面加上以下内容 make ZEND_EXTRA_LIBS='-liconv'
阅读全文
摘要:报错: Starting php-fpm [23-Jun-2021 19:15:33] WARNING: Nothing matches the include pattern '/usr/local/php/etc/php-fpm.d/*.conf' from /usr/local/php/etc
阅读全文
摘要:问题: /usr/bin/ld: ext/ldap/.libs/ldap.o: undefined reference to symbol 'ber_scanf' /usr/bin/ld: note: 'ber_scanf' is defined in DSO /lib64/liblber-2.4.
阅读全文
摘要:解决: cd ext/phar/ cp ./phar.php ./phar.phar make install
阅读全文
摘要:yum install libldap* cp -frp /usr/lib64/libldap* /usr/lib/
阅读全文
摘要:这个报错信息其实是因为升级到python3的原因,只需要把/usr/sbin/firewalld文件里面的python路径指向之前python2的路径即可
阅读全文
摘要:错误: 解决: systemctl stop NetworkManager /etc/init.d/network restart 如果不行,需要修改Centos的MAC地址,再重复执行上面的命令
阅读全文
摘要:前端返回504 uwsgi报错日志问题1 Tue Jan 19 14:06:15 2021 - SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) BrokenPipeError: [Errno
阅读全文
摘要:默认情况下,使用subprocess模块会因为超时而导致报错,但是这种报错只会在任务执行完才报错,不会超时立马报错。 参考链接 https://www.jianshu.com/p/3410828a3c5d https://blog.csdn.net/jiandanokok/article/detai
阅读全文
摘要:今天在一台CentOS6.5机器运行shell脚本,变量存了一个命令获取的结果,里面存在一个\r符号,导致后面报错,错误如下: ")syntax error: invalid arithmetic operator (error token is " 在其他机器没有发现这个问题,尴尬,查了一圈终于找
阅读全文
摘要:问题:安装request模块报错 解决: pip install 包名 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com因为连接外国源,设置为国内豆瓣源就好 豆瓣源不可用了,使用阿里源 pip install -i htt
阅读全文
摘要:今天写了一个管理supervisord进程脚本,执行发现有报错,如下 http://localhost:9001 refused connection 问题原因分析:supervisor通常有以下两种方式通信:1、本地socket2、http连接 本机supervisord配置文件里面是开启了soc
阅读全文