上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 56 下一页
摘要: 安装xhprof /usr/local/php/bin/pecl install xhprof 配置php.ini文件 echo "extension=xhprof.so" >> /usr/local/php/conf/php.ini echo "xhprof.output_dir=/tmp" >> 阅读全文
posted @ 2022-03-10 20:10 小吉猫 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 创建cache目录 mkdir -pv /var/cache/nginx/fastcgi_cache 修改/etc/fstab文件 tmpfs /var/cache/nginx/fastcgi_cache tmpfs defaults,size=200m,context=system_u:objec 阅读全文
posted @ 2022-03-06 01:31 小吉猫 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 安装goaccess $ wget -O - https://deb.goaccess.io/gnugpg.key | gpg --dearmor | sudo tee /usr/share/keyrings/goaccess.gpg >/dev/null $ echo "deb [signed-b 阅读全文
posted @ 2022-03-05 19:44 小吉猫 阅读(636) 评论(0) 推荐(0) 编辑
摘要: 1.先进入主库,进行锁表,防止数据写入 mysql> flush tables with read lock; 2.进行数据备份 /usr/local/mysql/bin/mysqldump -uroot -p --quick --routines --master-data=2 --single- 阅读全文
posted @ 2022-03-03 17:52 小吉猫 阅读(201) 评论(0) 推荐(0) 编辑
摘要: MySQL server has gone away https://dev.mysql.com/doc/refman/5.7/en/gone-away.html Lost connection to server during query 该MySQL server has gone away错误 阅读全文
posted @ 2022-03-03 13:24 小吉猫 阅读(118) 评论(0) 推荐(0) 编辑
摘要: max_connections 命令行格式 --max-connections=# 系统变量 max_connections 范围 global 动态的 是的 类型 整数 默认值 151 最小值 1 最大值 100000 允许的最大同时客户端连接数。最大有效值是open_files_limit-81 阅读全文
posted @ 2022-03-03 11:38 小吉猫 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 安装依赖 apt -y install gcc make libssl-dev zlib1g-dev libgd-dev libgeoip-dev libpcre2-dev libpcre3-dev 创建用户 groupadd -g 113 -r nginx && useradd -M -N -g 阅读全文
posted @ 2022-02-25 15:08 小吉猫 阅读(1735) 评论(0) 推荐(0) 编辑
摘要: 安装依赖 apt-get -y install libpcre3-dev libssl-dev perl libperl-dev make build-essential curl 下载安装包 wget https://openresty.org/download/openresty-1.19.9. 阅读全文
posted @ 2022-02-25 09:58 小吉猫 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 创建监控用户 CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '123456'; GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%'; fl 阅读全文
posted @ 2022-02-24 17:29 小吉猫 阅读(250) 评论(0) 推荐(0) 编辑
摘要: Dockerfile内容 FROM ubuntu:20.04 ADD composer-v2.1 /usr/local/sbin/ ADD pcre2-10.39.tar.gz /tmp ADD libzip-1.8.0.tar.gz /tmp ADD php-7.4.24.tar.gz /tmp 阅读全文
posted @ 2022-02-24 14:02 小吉猫 阅读(393) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 56 下一页