上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: 如果无法启动系统,系统崩溃或有重新安装系统的需求,可以直接按照步骤进行ghost镜像即可。 1、下载镜像文件: 下载地址:链接:https://pan.baidu.com/s/1vIULjOT1cqC6FN2BpYQDoA 复制这段内容后打开百度网盘手机App,操作更方便哦 2、准备一个U盘,安装w 阅读全文
posted @ 2021-08-23 14:41 求必印 阅读(543) 评论(0) 推荐(0)
摘要: 第三种,总是使用最新版本文档模式。 以下是例子: <meta http-equiv="X-UA-Compatible" content="IE=edge"/> 根据例子代码,IE浏览器将总是使用最新版本的文档模式,如用 IE8 访问就是 IE8 文档模式,用 IE9 访问就是 IE9 模式,用 IE 阅读全文
posted @ 2020-09-08 11:29 求必印 阅读(495) 评论(0) 推荐(0)
摘要: ps -ef|grep httpd|wc -l 统计httpd进程数,连个请求会启动一个进程,使用于Apache服务器。 查看Apache的并发请求数及其TCP连接状态:netstat -n | awk '/^tcp/ {++S[$NF]} END {for (a in S) print a, S[ 阅读全文
posted @ 2020-04-08 21:17 求必印 阅读(424) 评论(0) 推荐(0)
摘要: centos linux服务器apache+mysql环境访问慢优化方法 阅读全文
posted @ 2020-01-29 17:18 求必印 阅读(419) 评论(0) 推荐(0)
摘要: 1.可查询数据库最大连接数 show variables like '%max_connections%'; 2.修改数据库最大连接数,最大限制上限为16384。 找到数据库配置文件my.cnf,在配置里将max_connections的值(若没有就新增)改为你想要的连接数量,例如: max_con 阅读全文
posted @ 2020-01-08 15:00 求必印 阅读(432) 评论(0) 推荐(0)
摘要: 1、打开错误显示,可以在控制controllers的首页入口加入以下代码,查看错误 error_reporting(-1); ini_set('display_errors', 1); //插入显示所有错误 2、将网站路径内的文件夹权限给到777 阅读全文
posted @ 2020-01-02 21:26 求必印 阅读(700) 评论(0) 推荐(0)
摘要: 1、先查看是否安装crond yum list installed | grep cron 若没有安装: yum -y install vixie-cron yum -y install crontable 2、查看crond的config 2,3,4,5是否开启 chkconfig --list 阅读全文
posted @ 2019-12-15 20:50 求必印 阅读(903) 评论(0) 推荐(0)
摘要: yum --enablerepo=remi-php56 install php-gd php-mysql php-mbstring php-xml php-mcrypt //安装GD库扩展 service httpd restart //重启生效 阅读全文
posted @ 2019-12-02 10:33 求必印 阅读(515) 评论(0) 推荐(0)
摘要: 1、centos 安装流量监控iftop apt-get install iftop -y 2、查看网卡名称 ifconfig 3、查看端口占用情况 iftop -i 网卡名称 -P 执行 netstat 命令反查流量大的端口对应进程。 netstat -tunlp |grep 端口号 最终定位出来 阅读全文
posted @ 2019-06-11 23:01 求必印 阅读(5365) 评论(0) 推荐(0)
摘要: 1.Apache 1.Apache #安装apache软件 yum -y install httpd #安装apache软件 #安装apache软件 yum -y install httpd #启动httpd服务 service httpd start #启动httpd服务 #启动httpd服务 s 阅读全文
posted @ 2019-03-05 17:29 求必印 阅读(320) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 14 下一页