排序
Apache ProxyPass 出现503 Service Temporarily Unavailable 的解决方案
访问出现503错误: Service Temporarily Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later....
CentOS7防火墙放行端口
使用方法如下: >>> 关闭防火墙 systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service  ...
CentOS7使用firewalld打开关闭防火墙与端口
1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : systemctl disable firewalld 开...
悬镜Llinux服务器安全卫士使用命令
悬镜Llinux服务器安全卫士使用命令 启动悬镜:/etc/init.d/xmirrord start 或 service xmirrord start 重启悬镜:service xmirrord restart 停止悬镜:service xmirrord stop 卸载悬镜:/usr/sh...
CentOS7中关闭firewall,并使用iptables管理防火墙。
1.关闭默认的firewall防火墙 systemctl stop firewalld.service 关闭防火墙 systemctl disable firewalld.service 关闭开机启动 2.开启iptables yum install iptables (根据centOS7的版本和内...
关于宝塔主机面板无法使用PHP自带函数发送邮件的解决方法
Centos6.x: 检查sendmail是否启动: chkconfig --list | grep sendmail 若显示为空请通过以下命令设置sendmail自动启动: service sendmail start chkconfig --level 2345 sendmail on Ce...
宝塔挂载新硬盘后修改网站根目录的方法
service mysqld stop service nginx stop cd /www/ #进入网站上层目录 mv wwwroot /data #把wwwroot移动到/Data目录,即数据盘 ln -s /data/wwwroot #原目录不变,并链接到数据盘,原有任何设置...
宝塔面板无法使用PHP自带函数发送邮件的解决方法
Centos6.x: 检查sendmail是否启动: chkconfig --list | grep sendmail 若显示为空请通过以下命令设置sendmail自动启动: service sendmail start chkconfig --level 2345 sendmail on Ce...
宝塔挂载新硬盘后修改网站根目录的方法
service mysqld stop service nginx stop cd /www/ #进入网站上层目录 mv wwwroot /data #把wwwroot移动到/Data目录,即数据盘 ln -s /data/wwwroot #原目录不变,并链接到数据盘,原有任何设置...
CentOS 7启动、重启、chkconfig等命令已经合并为systemctl
CentOS 7系统服务启动、重启、设置服务启动项命令以合并为,systemctl . 现在用service 或/etc/init.d/命令,重启,重新启动,停止等没效果,因为命令合并为systemctl. 新命令具体内容如下: 以启动ht...
宝塔挂载新硬盘后修改网站根目录的方法
service mysqld stop service nginx stop cd /www/ #进入网站上层目录 mv wwwroot /data #把wwwroot移动到/Data目录,即数据盘 ln -s /data/wwwroot #原目录不变,并链接到数据盘,原有任何设置...
VestaCP安装Zend OpCache,IonCubeLoade。
安装ZendOpcache 1 2 yum install--enablerepo=remi php-opcache service httpd restart 安装IoncubeLoader 1 2 yum install--enablerepo=remi php-ioncube-loader service httpd r...