- 安装程序包:yum install 包名
- 下载程序包:wget 程序包URL
- 解压tar包:tar -zxvf 程序包名
- 编译和安装本地程序包:make
- 查看本地所有开放的端口:netstat -nltp
- 查看指定端口和它的进程ID:netstat -ano | find "端口"
- 统计指定端口建立的连接次数: netstat -ano | grep 6379 | wc -l
- 查看正在运行中的程序对应的PID号:ps -ef | grep 进程名
- 强制删除目录及它下面所有文件:rm -rf redis-3.2.8
- 查看某个端口上进程的详细信息:ss -tanp|grep 6379
- 在命令结尾加”&”符号可以让命令在后台运行
- 共享目录设置: vi /etc/profile
- 共享目录设置完成后,立即更新:source /etc/profile
- linux上端口是否正常监听:curl localhost:8072
- linux是否开了防火墙:systemctl status firewalld
- 将linux启动时,防火墙策略改为关闭:systemctl disable firewalld
- 设置当前系统的防火墙服务停止:systemctl stop firewalld
Linux Centos 常用命令
Posted shw0009
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux Centos 常用命令相关的知识,希望对你有一定的参考价值。
以上是关于Linux Centos 常用命令的主要内容,如果未能解决你的问题,请参考以下文章