Ubuntu16.04.3 Reidsのインストール

2171 ワード

RedisはメモリベースのKeyValueデータベースとしてよく使用され、Memcacheよりも先進的で、多くのデータ構造をサポートし、効率的で、迅速です.Redisを使用すると、高同時性のデータアクセスの問題を簡単に解決できます.リアルタイムモニタ信号としての処理も非常によい.
環境
Ubuntu16.04.3
Redisサーバ側のインストール
sudo apt-get -y install redis-server

Redisサーバシステムプロセスの確認
~ ps -aux|grep redis
redis     4162  0.1  0.0  10676  1420 ?    Ss   23:24   0:00 /usr/bin/redis-server /etc/redis/redis.conf
conan     4172  0.0  0.0  11064   924 pts/0    S+   23:26   0:00 grep --color=auto redis

コマンドを起動してRedisサーバのステータスを確認
~ netstat -nlt|grep 6379
tcp        0      0 127.0.0.1:6379          0.0.0.0:*               LISTEN

Reidsサービスステータスの表示
root@iZ2ze1lytcrrmr1shasmx4Z:/home/soft# netstat -nlt | grep 6379
tcp        0      0 127.0.0.1:6379          0.0.0.0:*               LISTEN     
root@iZ2ze1lytcrrmr1shasmx4Z:/home/soft# service redis status
● redis-server.service - Advanced key-value store
   Loaded: loaded (/lib/systemd/system/redis-server.service; enabled; vendor preset: enabled)
   Active: active (running) since Thu 2018-05-31 21:28:14 CST; 2min 55s ago
 Docs: http://redis.io/documentation,
       man:redis-server(1)
 Main PID: 14438 (redis-server)
   CGroup: /system.slice/redis-server.service
       └─14438 /usr/bin/redis-server 127.0.0.1:6379       

May 31 21:28:14 iZ2ze1lytcrrmr1shasmx4Z systemd[1]: Starting Advanced key-value store...
May 31 21:28:14 iZ2ze1lytcrrmr1shasmx4Z run-parts[14420]: run-parts: executing /etc/redis/redis-server.pre-up.d/00_example
May 31 21:28:14 iZ2ze1lytcrrmr1shasmx4Z run-parts[14439]: run-parts: executing /etc/redis/redis-server.post-up.d/00_example
May 31 21:28:14 iZ2ze1lytcrrmr1shasmx4Z systemd[1]: Started Advanced key-value store.

コマンドラインクライアントによるRedisへのアクセス
root@iZ2ze1lytcrrmr1shasmx4Z:/home/soft# redis-cli
127.0.0.1:6379> 

リモート接続の構成
  /etc/redis/redis.conf  ,  bind 127.0.0.1

セキュリティのためのパスワードの設定
  /etc/redis/redis.conf  
  requirepass foobared   
foodared      

サービスの再起動
/etc/init.d/redis-server restart