Shell #!/bin/bash # 检查Nginx是否运行 if pgrep nginx > /dev/null 2>&1; then echo "Nginx is running." exit 0 else echo "Nginx is no...
Category Archives: linux
监控Nginx运行状态脚本
2024.07.5 , linux , No Comments ,Linux下用dd命令测试硬盘的读写速度
2024.06.26 , linux , No Comments ,一、测试写速度: time dd if=/dev/zero of=/tmp/test bs=8k count=1000000 二、测试读速度: time dd if=/tmp/test of=/dev/null bs=8k 三、测试读写速度: time dd if=/tmp/test of=/var/test bs=64k 四、参数说明 1、time 有计时作用,dd...
Linux强制同步时间命令
2024.04.19 , linux , No Comments ,有些系统时间不准同步时间后重启后又不准,可以使用这个加入到自动任务里即可 date -s "$(curl -H 'Cache-Control: no-cache' -sI google.com | grep '^Date:' | cut -d' ' -f3-6)Z" &>/dev/null 2...
LNMP一键安装包的Nginx 502 Bad Gateway错误可能原因及解决方法
2022.08.20 , linux , No Comments ,第一种原因: 安装lnmp一键安装包时php没安装成功而出现502 Bad Gateway,从0.9开始只要安装成功或失败都就会有提示。没安装成功一般原因是在安装php前,脚本中某些lib包可能没有安装上,造成php没有编译安装成功。可以看一下是否存在/usr/local/php/sbin/php-fpm ,如果没有肯定没安装成功。 解决方法: 可以尝试根据lnmp一...
Linux上iptables防火墙的基本应用
2022.07.6 , linux , No Comments ,1、安装iptables防火墙 如果没有安装iptables需要先安装,CentOS执行: yum install iptables -y yum install iptables-services -y #CentOS7需安装此iptables的service软件包# CentOS 7上默认安装了firewalld建议关闭并禁用: systemctl stop fi...
nginx 通过命令行查看并发连接数
2022.07.4 , linux , No Comments ,netstat -apn|grep 'nginx: worker'|wc -l
Linux sed 指定行添加内容
2021.10.15 , linux , No Comments ,将this is a test line添加至第7行 sed -i '7a\this is a test line' test.conf
查找并替换快速修改SSH端口命令
2021.10.15 , linux , No Comments ,执行以下命令: sed -i 's/Port 22/Port 10086/g' /etc/ssh/sshd_config 重启ssh服务即可 systemctl restart sshd