MacOS:Redisのインストールと有効化
一、概説
メモリデータベース、key-valueストレージシステムは、現在人気のあるNOSQLシステムの一つです.
二、homebrw取付
1.redisの検索
brew search redis
2.インストール
brew install redis
3.redisプロファイルパス
/usr/local/etc/redis.conf
4.redisのアンインストール
brew uninstall redis
三、サービス管理
1.起動
brew services start redis
2.サービスの表示
brew services list
3.サービスのクローズ
brew services stop redis
4.接続
redis-cli -h 127.0.0.1
メモリデータベース、key-valueストレージシステムは、現在人気のあるNOSQLシステムの一つです.
二、homebrw取付
1.redisの検索
brew search redis
➜ ~ brew search redis
==> Formulae
hiredis redis-leveldb
openresty/brew/redis-nginx-module [email protected]
openresty/brew/redis2-nginx-module [email protected]
redis
==> Casks
homebrew/cask/another-redis-desktop-manager
homebrew/cask/redis
2.インストール
brew install redis
➜ ~ brew install redis
3.redisプロファイルパス
/usr/local/etc/redis.conf
4.redisのアンインストール
brew uninstall redis
三、サービス管理
1.起動
brew services start redis
➜ ~ brew services start redis
==> Successfully started `redis` (label: homebrew.mxcl.redis)
2.サービスの表示
brew services list
➜ ~ brew services list
Name Status User Plist
nginx stopped
redis started chao /Users/chao/Library/LaunchAgents/homebrew.mxcl.redis.plist
3.サービスのクローズ
brew services stop redis
➜ ~ brew services stop redis
Stopping `redis`... (might take a while)
==> Successfully stopped `redis` (label: homebrew.mxcl.redis)
4.接続
redis-cli -h 127.0.0.1
➜ ~ redis-cli -h 127.0.0.1
127.0.0.1:6379> KEYS *
(empty list or set)
127.0.0.1:6379>