常用命令
Posted 领域见识决定专业高度
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用命令相关的知识,希望对你有一定的参考价值。
列出所有端口 netstat -a # netstat -a | more
列出所有 udp 端口 netstat -a # netstat -au
列出所有 tcp 端口 netstat -at # netstat -at
查看所有进程里 CMD 是 ssdb 的进程信息
ps -aux | grep ssdb
kill 命令用于终止进程:kill -9 [PID] -9 表示强迫进程立即停止
防火墙:
1) 重启后生效
开启: chkconfig iptables on
关闭: chkconfig iptables off
2) 即时生效,重启后失效
开启: service iptables start
关闭: service iptables stop
CenterOs7:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
以上是关于常用命令的主要内容,如果未能解决你的问题,请参考以下文章