Linux常用命令

firewall-cmd --zone=public --add-port=80/tcp --permanent       添加端口

firewall-cmd --zone=public --list-ports    查看开放的端口

firewall-cmd --reload   重新加载

firewall-cmd --permanent --remove-port=123/tcp  删除开放的端口


git config --global credential.helper store  git 记住密码


netstat -an | grep ESTABLISHED | wc -l   查看连接数


mysql 数据库索引异常解决办法 

cd /usr/local/mysql/bin

./myisamchk -c -r ../data/dbName/tableName


查看TIME_WAIT数量

netstat -ant|awk '/^tcp/ {++S[$NF]} END {for(a in S) print (a,S[a])}'

对应解决办法

vi /etc/sysctl.conf

net.ipv4.tcp_tw_reuse = 1

net.ipv4.tcp_tw_recycle = 1

net.ipv4.tcp_fin_timeout = 10


ssh会每60秒发送一个KeepAlive请求,保证终端不会因为超时空闲而断开连接。

vi ~/.ssh/config

ServerAliveInterval 60


定时任务

centos7 重启服务 systemctl restart crond

菜鸟教程


评论

  1. #1

    坚果儿 (2021/05/27 14:49)
    吃的下饭 笑的出声