ubuntu redis apt-getからリモートアクセス可能にインストール

2624 ワード

現在のlinux環境ubuntu 18.04
#  
apt-get update
apt-get install redis-server
#  redis   
whereis redis 
#Out:redis:/etc/redis
#  /etc/redis,   redis.conf,   redis     ~
ls /etc/redis 
#Out:redis.conf

#  (  )
#(1)    ,  6379
redis-server  
#(2)    
redis-server --port 6888
#(3)        
redis-server /etc/redis/redis.conf 

#  redis    
netstat -tunlp | grep 6379 #(       )
ps -aux | grep redis
redis-cli  #redis      ,   ping    PONG,    

#log
logfile /var/log/redis/redis-server.log

#  redis
#(1)    pkill    
pkill redis
#(2)  redis-cli  ,    -p     
redis-cli shutdown

redisを通ります.confリモートアクセスの構成
daemonize yes #         
#bind 127.0.0.1  #   bind 127.0.0.1,    ip  
protected-mode no #      
requirepass your_passwd #    ,          

redis-server/etc/redis/redis.conf方式で起動すればリモートアクセスできます~
コマンドラインクライアントアクセス:
#    redis   
$ redis-cli
127.0.0.1:6379>select 1 #  db
OK
127.0.0.1:6379>keys *
#……
#    
$ redis-cli -h 138.138.138.138  -p  6379 
redis>ping
PONG

flushdb #           Key
flushall #         key