防火牆配置 # 啟動防火牆服務 systemctl start firewalld # 關閉防火牆服務 systemctl stop firewalld # 查看防火牆服務狀態 systemctl status firewalld # 開機禁用防火牆服務 systemctl disable fire ...
防火牆配置
# 啟動防火牆服務
systemctl start firewalld
# 關閉防火牆服務
systemctl stop firewalld
# 查看防火牆服務狀態
systemctl status firewalld
# 開機禁用防火牆服務
systemctl disable firewalld
# 開機自啟防火牆服務
systemctl enable firewalld
埠配置
開放埠
# 開放 9090 埠
firewall-cmd --zone=public --add-port=9090/tcp --permanent
# 開放 9090~9095
firewall-cmd --zone=public --add-port=9090-9095/tcp --permanent
關閉埠
# 關閉 9090 埠
firewall-cmd --zone=public --remove-port=9090/tcp --permanent
# 關閉 9090~9095
firewall-cmd --zone=public --remove-port=9090-9095/tcp --permanent
配置立即生效
firewall-cmd --reload
查看防火牆已開放埠
firewall-cmd --zone=public --list-ports
查看指定埠占用情況
netstat -anp | grep 8080
netstat -tln | grep 8080
查看全部埠占用情況
netstat -anp
或者
netstat -tln
查看具體埠被哪個程式占用
lsof -i :8080
kill被占用的進程
kill -9 2597932
查看程式埠占用情況
ps -aux | grep tomcat
nginx常用命令
重啟命令
service nginx restart
檢查服務狀態
service nginx status
檢查nginx配置文件
nginx -t
關閉nginx服務
service nginx stop
開啟nginx服務
service nginx start
Tomcat常用命令(未加入環境變數版本)
具體操作:
進入tomcat的bin目錄進行具體操作
關閉tomcat
sh shutdown.sh 或者
./shutdown
開啟tomcat服務
sh startup.sh 或者
./startup.sh
查看運行日誌
./catalina.sh run
MySql常用命令
啟動mysql
service mysql start
關閉mysql
service mysql stop
重啟mysql
service mysql restart
登錄mysql命令行界面
mysql -uroot -p
其餘操作和mysql的windows版本類似,不一一列舉
yum常用命令