1. ホーム
  2. Redis

インストール後、Redis-cliが動作しない(redis-cli: コマンドが見つからない)。

2022-02-16 01:45:41
<パス

以前は、redisをインストールした後、クライアントが動作しない、つまり、redis-cliが実行後にnot foundエラーを報告しました。StackOverFlowでredis cliだけをインストールする方法を見つけたので、ここで共有します。

wget http://download.redis.io/redis-stable.tar.gz (to download the redis-cli tarball)
tar xvzf redis-stable.tar.gz (unpack it)
cd redis-stable (go to the redis-stable directory)
make (install)
sudo cp src/redis-cli /usr/local/bin/ (copy redis-cli to bin so that the redis-cli command can be used directly in any directory)

上記の命令を実行すると、redis-cliは正常に実行されます。上記の命令のいくつかは実行する必要があり、makeは別の命令です。