〇Reddis Commanderの画面
ブラウザからhttp://<ホスト名またはIPアドレス>:8081/ にアクセスします。
〇インストール方法
以下の手順を実行します。
1. Redisのインストール
sudo apt-get update
sudo apt-get -y install redis-server
# 動作確認
redis-cli << EOF
ping
flushall
set mykey "hello world."
get mykey
EOF
2. node.jsとredis-commanderのインストール
sudo apt-get -y install curl
curl -sL https://deb.nodesource.com/setup_12.x | sudo bash -
sudo apt-get install -y nodejs
sudo npm install --no-optional -g redis-commander
cat << EOF | sudo tee /etc/systemd/system/rediscommander.service
[Unit]
Description=redis-commander
[Service]
Type=simple
ExecStart=/usr/bin/redis-commander
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl enable rediscommander.service
sudo systemctl start rediscommander.service
0 件のコメント:
コメントを投稿