查詢檔案
模糊匹配查詢 find / -name 'zookeeper*'
精準查詢 find / -name redis
啟動zookeeper
在每台機器上執行 bin/zkserver.sh start
檢視執行狀態:bin/zkserver.sh status
啟動redis
./redis-server
以配置檔案方式啟動
./redis-server /etc/redis.conf
如何檢視redis服務正常啟動?
使用ps檢視或netstat
ps aux | grep redis-server
netstat -tunple | grep 6379
常用liunx命令
1 新增使用者並設定密碼 新增使用者 useradd test 設定密碼 passwd test 3 解壓tar檔案,tar xvf x.tar 4 刪除檔案 rm rf nginx 1.9.9.tar.gz 5 nginx 配置檔案日誌目錄 配置命令 configure prefix opt ng...
liunx查詢配置命令
一 查詢cpu資訊 cat proc cpuinfo grep name cut f2 d uniq c 8 intel r xeon r cpu e5410 2.33ghz 1 檢視cpu資訊 總核數 物理cpu個數 x 每顆物理cpu的核數 總邏輯cpu數 物理cpu個數 x 每顆物理cpu的核...
liunx 常用基礎命令
1.cat 命令用於連線檔案並列印到標準輸出裝置上 cat abeensttuv help version filename 以下為常用 n 或 number 由 1 開始對所有輸出的行數編號。b 或 number nonblank 和 n 相似,只不過對於空白行不編號。s 或 squeeze bl...