生活在宁静的角落 terry
nginx http 80 端口重定向到 https 443 端口
修改 nginx 配置文件
[root@hostname /]# vim /etc/nginx/conf.d/default.conf>
在新增一个server,用于跳转
server { listen 80 default; server_name www.on0926.com on0926.com; rewrite ^(.*)$ https://${server_name}$1 permanent; }
原有的server listen 端口修改 …
/etc/php-fpm.d/www.conf 配置参数详解
emergency_restart_threshold = 10
在指定的一段时间内,如果失效的php-fpm子进程数超过这个值,php-fpm主进程优雅重启
emergency_restart_interval = 1m
设定emergency_restart_threshold 设置采用的时间跨度,s(econds), m(inutes), h(ours), or d(ays)
user = www
拥有这个php-fpm进程池中子进程的系统用户。要把 …
Linux文件系统中/bin、/sbin、/usr/bin、/usr/sbin、/usr/local/bin、/usr/local/sbin文件夹的区别是什么?
TCP 连接状态详解及故障排查
我们通过了解TCP各个状态,可以排除和定位网络或系统故障时大有帮助。
1、TCP状态
了解TCP之前,先了解几个命令:
linux查看tcp的状态命令: 1) netstat -nat 查看TCP各个状态的数量 2)lsof -i:port 可 …
Zabbix 监控 Esxi 主机
环境:
Zabbix 5.08
ESXI 6.7.0
先配置esxi 主机,在管理-系统-高级设置,找到键:Config.HostAgent.plugins.solo.enableMob,然后将其设置为true
获取UUID
浏览器访问:https://esxi_ip …