Ubuntu構成環境-番外:redis-serverのインストール

613 ワード

redisサービス・エンドのインストール
apt-get install redis-server

インストールが完了すると、Redisサーバは自動的に起動し、デフォルトポートは6379です.
Redisサーバプログラムを確認し、ps-aux|grep redisを実行し、結果を得た.
root@iZ625318qydZ:~# ps -aux|grep redis
redis    20573  0.0  0.7  39844  7272 ?        Ssl  22:02   0:01 /usr/bin/redis-server 127.0.0.1:6379
root     21063  0.0  0.0  11740   936 pts/2    S+   23:05   0:00 grep --color=auto redis

コマンドを起動してRedisサーバのステータスを確認し、実行します:netstat-nlt|grep 6379
redis-cliはコンソール操作に入ります.
pythonのredisパッケージのインストール
pythonの仮想環境に入ると
pip install redis