Ubuntu
LongMarkCai
php linux AS java
展开
-
PHP & Linux: error while loading shared libraries: libsodium.so.23 错误解决方法
启动swoole的时候,或者命令行执行php文件报错:error while loading shared libraries: libsodium.so.23: cannot open shared object file: No such file or directory解决方法,建议一个libsodium.so.23的软链接64位:ln -s你的php路径/sbin/depends/libsodium.so.23 /usr/lib64位:ln -s你的php路..原创 2020-10-26 11:34:07 · 3033 阅读 · 1 评论 -
全文搜索 xunsearch 项目中重复安装踩坑 failed to configure xunsearch 、configure: error
1.安装xunsearch参照官方文档:http://www.xunsearch.com/doc/php/guide/start.installation2.踩坑如果是第一次安装,是没有任何问题,如果是重复安装,请注意安装的目录,不要在原目录下安装。官方的这个提示有个坑,那就是在原目录下安装会报错,比如原本目录是在/usr/local/xxx,把项目迁移到新服务器后,再次在/usr/local/xxx中安装会提示报错:configure: error: Inval.原创 2020-10-15 11:44:33 · 2886 阅读 · 0 评论 -
Linux上mysql开启远程链接不生效的解决方式
第一种情况,或许是服务器没有添加3306的规则,这时添加规则,再试试能否链接第二种情况,如依然不能连接,则看看服务器的防火墙是否开放3306端口。我遇到的情况便是此种。解决方法:开放3306端口root@iZuf69urlacrut7qqxhcofZ:/# firewall-cmd --permanent --add-port=3306/tcp如果提示错误:The program 'firewall-cmd' is currently not installed. You can i原创 2020-07-30 10:20:46 · 644 阅读 · 0 评论 -
PHP7.4版本 安装GD库扩展
场景 ubuntu PHP版本7.4 运行服务器 nginx一、更新源root@iZuf69urlacrut7qqxhcofZ:/web# sudo apt-get update二、安装gd扩展root@iZuf69urlacrut7qqxhcofZ:/web# apt-get install php7.4-gd 等待安装完成cailongbiaoyuli三、配置gd到php的配置文件php.ini ...原创 2020-06-08 15:59:13 · 9100 阅读 · 0 评论 -
PHP7 connect() failed (111: Connection refused) while connecting to upstream, client 错误的解决方法
错误信息,下面是nginx访问的日志,页面502错误。一连串的connect() failed (111: Connection refused) while connecting to upstream, clientnginx中我依然是监听的9000端口,在php7中默认并不是9000端口,而是php7.0-fpm.sock ,以此来监听的。解决方法:修改...原创 2020-01-12 15:53:23 · 5281 阅读 · 0 评论 -
ubuntu 或 Centos 中 命令行 -bash: !@: event not found 等类似错误处理小记
在乌班图中修改了mysql的密码后,不能登录了,密码是这个样式的:xxxxxx!@然后登录,报错如下root@iZuf69urlacrut7qqxhcofZ:/usr/local/mysql# mysql -u root -p xxxxxx!@-bash: !@: event not found原因是,!在 bash 中有着特殊的含义;所以要 在!前加...原创 2020-01-11 15:11:43 · 1445 阅读 · 0 评论 -
在Ubuntu 实践之那些有趣的命令(一)
收集了一些好玩有趣的命令,然后都试了试,发现确实挺好玩的,写代码累了的时候,大家可以挨着一个个安装玩玩,下面开始。1.Cmatrix 看起来高大上,实际上没有用哈哈root@iZuf69urlacrut7qqxhcofZ:/# sudo apt-get install cmatrixroot@iZuf69urlacrut7qqxhcofZ:/# cmatrix2.火...原创 2019-11-29 15:21:18 · 615 阅读 · 0 评论 -
Ubuntu LNMP 超快安装
1.nginx一键安装ubuntu@VM-125-124-ubuntu:/var/www/html$ sudo apt-get install nginx然后启动ningxsudo service nginx start|stop|restart访问nginx首页:ubuntu@VM-125-124-ubuntu:/var/www/html$ curl -l lo...原创 2019-05-08 19:13:05 · 176 阅读 · 0 评论