linux运维 centos7如何安装redis 1.安装gcc依赖 redis是c语言开发,需要安装gcc,如果没有安装gcc,执行下面命令进行安装 yum install gcc -y 2.下载redis源码包... 2020年03月08日 阅读 1,952 views 发表评论 阅读全文
linux运维 centos7 php如何编译安装sockets扩展 1.进入到php源码下载后解压的目录,再进入ext/sockets目录,在该目录下执行下面的命令 /usr/local/php/bin/phpize 如果出现 "C... 2020年02月11日 阅读 2,602 views 发表评论 阅读全文
linux运维 php-fpm怎么启动、重启、关闭 一、 1.php-fpm启动: /usr/local/php/sbin/php-fpm 2.php-fpm重启: 执行netstat -nltp,先查看一下php-... 2020年02月11日 阅读 2,171 views 发表评论 阅读全文
linux运维 centos7如何安装composer linux安装composer非常简单,只需要两行命令 curl -sS https://getcomposer.org/installer | php mv co... 2020年02月10日 阅读 1,922 views 发表评论 阅读全文
linux运维 centos7如何手动安装lnmp环境 1.安装nginx centos7如何安装nginx 2.安装mysql centos7如何安装mysql 3.安装php centos7如何安装php 4.ngi... 2020年02月10日 阅读 1,221 views 发表评论 阅读全文
linux运维 centos7如何关闭防护墙 关闭防火墙: systemctl stop firewalld.service 禁止防火墙开机启动 systemctl disable firewalld.serv... 2020年02月09日 阅读 1,203 views 发表评论 阅读全文
linux运维 centos7如何安装php7.3 1.下载php yum install wget -y && wget https://www.php.net/distributions/php-7.3.14.t... 2020年02月09日 阅读 1,336 views 发表评论 阅读全文
linux运维 centos7如何安装mysql 1.下载mysql yum install wget -y && wget https://dev.mysql.com/get/Downloads/MySQL-5.... 2020年02月09日 阅读 1,129 views 发表评论 阅读全文
linux运维 centos7如何安装nginx 1.下载nginx yum install wget -y && wget http://nginx.org/download/nginx-1.16.1.tar.g... 2020年02月09日 阅读 1,127 views 发表评论 阅读全文
linux运维 宝塔面板MySql进程守护脚本,数据库关闭后自动重启 宝塔面板数据库经常自动关闭,怎么解决呢? 可以在计划任务中,添加一个计划任务来守护mysql进程,监测mysql状态,关闭了就自动重启。 pgrep -x mysq... 2020年02月03日 阅读 1,928 views 发表评论 阅读全文