具體查看方法如下:
(學習影片分享:redis影片教學)
1、在redis下查看安裝目錄
如果指令which 和whereis 都找不到安裝目錄,可使用下列方法:
ps -ef|grep redis
得到了進程編號xxxx,
然後ls -l /proc /xxxx/cwd。
2、檢視redis-cli 和redis-server的目錄
則使用whereis redis-cli。
3、關閉redis
(1)先進入redis ./redis-cli 輸入密碼 auth '密碼'。
(2)shutdown。
如果直接在目錄中使用 ./redis-cli shutdown 是關閉不了的。
4、模糊查詢使用find
find / -name redis*
其中: / 指的是根目錄。
相關推薦:redis資料庫教學
以上是linux下查看redis的安裝目錄的方法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!