nginx常用命令
啟動:cd /usr/local/nginx/sbin
./nginx
nginx服務啟動後預設的程序號會放在/usr/local/nginx/logs/nginx.pid檔案
cat nginx.pid 檢視程序號
關閉:kill -term pid 快速停止服務
kill -quit pid 平緩停止服務
kill -9 pid 強制停止服務
重啟:cd /usr/local/nginx
./nginx -hup pid
./nginx -s reload
另外一些常見的命令:
./nginx -h 檢視nginx所有的命令引數
options:
-?,-h : this help
-v : show version and exit
-v : show version and configure options then exit
-t : test configuration and exit
-t : test configuration, dump it and exit
-q : suppress non-error messages during configuration testing
-s signal : send signal to a master process: stop, quit, reopen, reload
-p prefix : set prefix path (default: /usr/local/nginx/)
-c filename : set configuration file (default: conf/nginx.conf)
-g directives : set global directives out of configuration file
一些常用命令
7 12 chmod rwx rw rw u 檔案擁有者 g 所屬的使用者組 o 其它使用者 mount mount t 檔案型別 需要掛載的檔案系統 掛載點 umount umount 掛載點 tar c create 建立 x extract v verbose 顯示資訊 z gzip tar....
一些常用命令
df h 顯示分割槽空間 du 顯示目錄或檔案的大小 fdisk 分割槽設定 fdisk l dev hda 顯示硬碟分割槽狀態 mkfs 建立各種檔案系統 mkfs t ext3 dev ram15 fsck 檢查和修復linux檔案 mke2fs 格式化 mkfs t ext3 dd if et...
mysql一些常用命令
mysql一些常用命令 一 連線mysql。格式 mysql h主機位址 u使用者名稱 p使用者密碼 1 連線到本機上的mysql。首先開啟dos視窗,然後進入目錄mysql bin,再鍵入命令mysql u root p,回車後提示你輸密碼.注意使用者名稱前可以有空格也可以沒有空格,但是密碼前必須...