cp integral_mobile-3.0.4.log /tmp 複製檔案到tmp路徑
tail -2000 integral_mobile-3.0.4.log 列印日誌2000行
sudo ./nginx -s reload 重啟配置檔案
cd /usr/local/nginx/conf nginx根目錄
ps -aux | grep 查詢程序的詳細資訊
jps 檢視所有程序jar包情況
ps -ef | grep nginx 檢視nginx狀況
sudo ./nginx 啟動nginx 進入到cd /usr/local/nginx/sbin
檢視firewall的狀態
firewall-cmd --state
檢視firewall服務的狀態
systemctl status firewalld
停止防火牆
service firewalld stop
開啟防火牆
service firewalld start
重啟防火牆
service firewalld restart
檢視8080埠(埠可隨意替換)是否開放
firewall-cmd --query-port =8080/tcp
開放8080埠
firewall-cmd --permanent --add-port=8080/tcp
移除8080埠
firewall-cmd --permanent --remove-port=8080/tcp
MYSQL常用指令集
查詢 正在使用的引擎 show engines 查詢死鎖的表 show open tables where in use 0 查詢所有正在進行的執行緒 show full processlist 查詢 正在執行的事務 select from information schema.innodb trx...
git常用指令集
轉殖專案 git clone git 建立分支 git branch daily 1.0.0 切換分支 git checkout daily 1.0.0 檢視本地分支 git branch 查出遠端分支 git branch r 檢視本地遠端分支 git branch a 建立並切換分支 git c...
三 Docker常用指令集
操作docker需要指令集,以下是常用指令集 1.通用指令操作 命令示例 檢視 docker 版本 docker version docker version docker version 檢視 docker 資訊 docker info docker info 檢視某命令 help 資訊 dock...