1. 程式人生 > >Redis、nginx常用命令

Redis、nginx常用命令

1.啟動 Redis 服務:src/redis-server或者src/redis-server redis.conf
2.日誌輸出:src/Redis-server redis.conf 1>log.log 2>errlog.log1為標準輸出,2為錯誤輸出
3.將 Redis 作為 Linux 服務隨機啟動:vi /etc/rc.local, 加入程式碼:/root/install/redis-2.4.9/src/redis-server
4.停止服務:src/redis-cli shutdown
5.客戶端連線:src/redis-cli
6.登入訪問:auth sino1234
7.取出當前匹配的所有key:keys *
8.當前的key是否存在:exists larry
9.獲得key:get name
10.重新命名key:rename
11.刪除當前key:del lv
12.設定過期時間:expire larry 10


lsof -i:8080
kill -9 30515


nohup ./catalina.sh run &
tail -f nohup.out


檢視許可權
ll
授權
chmod 777 catalina.sh


nginx 伺服器重啟命令,關閉
nginx -s reload  :修改配置後重新載入生效
nginx -s reopen  :重新開啟日誌檔案
nginx -t -c /path/to/nginx.conf 測試nginx配置檔案是否正確


關閉nginx:
nginx -s stop  :快速停止nginx
         quit  :完整有序的停止nginx


其他的停止nginx 方式:


ps -ef | grep nginx


kill -QUIT 主程序號     :從容停止Nginx
kill -TERM 主程序號     :快速停止Nginx
pkill -9 nginx          :強制停止Nginx


啟動nginx:
nginx -c /path/to/nginx.conf


平滑重啟nginx:
kill -HUP 主程序號