systemctlがCentOS 7でredis-serverを起動しないのはなぜですか?


13

新しいCentOS 7ボックスにredisをインストールしましたが、systemctlを使用してredisを起動できません。

次のようにインストールされました。

rpm -i http://dl.fedoraproject.org/pub/epel/beta/7/x86_64/epel-release-7-0.2.noarch.rpm
yum install redis

このように起動しようとすると、静かに失敗するように見えました(出力はありませんでした)。

systemctl start redis-server # also tried redis-server.service

接続しようとすると、次のことが起こります。

redis-cli
Could not connect to Redis at 127.0.0.1:6379: Connection refused
not connected>

しかし、手動で起動すると動作します:

[root@redis ~]# redis-server /etc/redis.conf
[root@redis ~]# redis-cli
127.0.0.1:6379>

誰が何が間違っているのか、これをデバッグする方法を知っていますか?

更新:/var/log/redis/redis.log以下の出力です。ところで、それは512mb RAM VPSです。

[1972] 29 Jul 18:52:16.258 # You requested maxclients of 10000 requiring at least 10032 max file descriptors.
[1972] 29 Jul 18:52:16.258 # Redis can't set maximum open files to 10032 because of OS error: Operation not permitted.
[1972] 29 Jul 18:52:16.258 # Current maximum open files is 1024. maxclients has been reduced to 4064 to compensate for low ulimit. If you need higher maxclients increase 'ulimit -n'.
                _._
           _.-``__ ''-._
      _.-``    `.  `_.  ''-._           Redis 2.8.13 (00000000/0) 64 bit
  .-`` .-```.  ```\/    _.,_ ''-._
 (    '      ,       .-`  | `,    )     Running in stand alone mode
 |`-._`-...-` __...-.``-._|'` _.-'|     Port: 6379
 |    `-._   `._    /     _.-'    |     PID: 1972
  `-._    `-._  `-./  _.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |           http://redis.io
  `-._    `-._`-.__.-'_.-'    _.-'
 |`-._`-._    `-.__.-'    _.-'_.-'|
 |    `-._`-._        _.-'_.-'    |
  `-._    `-._`-.__.-'_.-'    _.-'
      `-._    `-.__.-'    _.-'
          `-._        _.-'
              `-.__.-'

[1972] 29 Jul 18:52:16.259 # Server started, Redis version 2.8.13
[1972] 29 Jul 18:52:16.259 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
[1972] 29 Jul 18:52:16.260 * DB loaded from disk: 0.001 seconds
[1972] 29 Jul 18:52:16.260 * The server is now ready to accept connections on port 6379
[1972] 29 Jul 18:52:16.265 # User requested shutdown...
[1972] 29 Jul 18:52:16.265 * Saving the final RDB snapshot before exiting.
[1972] 29 Jul 18:52:16.267 * DB saved on disk
[1972] 29 Jul 18:52:16.267 * Removing the pid file.
[1972] 29 Jul 18:52:16.267 # Redis is now ready to exit, bye bye...

そしてステータス:

[root@redis ~]# systemctl status redis-server
redis-server.service - Redis persistent key-value database
   Loaded: loaded (/usr/lib/systemd/system/redis-server.service; disabled)
   Active: inactive (dead)

Jul 29 18:52:16 redis systemd[1]: Starting Redis persistent key-value database...
Jul 29 18:52:16 redis systemd[1]: Started Redis persistent key-value database.

2
もちろん、それは問題なく起動し、それからUser requested shutdown...明らかな理由はありません。
マイケルハンプトン

@MichaelHamptonはい、すぐにシャットダウンします。私は本当にその理由を知りたいです!手動で実行するとわかる唯一の違いは、root(redisユーザーではない)として実行していることです。
ズビン14

回答:


24

最後に、それを修正しました。Systemdでは、デーモン化されていない状態で実行するにはredisが必要であるため、設定を変更する必要があります。

# /etc/redis.conf
daemonize yes # << comment this out

すごい。これはsystemdユニットファイルのバグであり、報告する必要があります。
マイケルハンプトン

これを解決しましたか?解決済みとしてマークしませんでした。
マイケルハンプトン

1
@MichaelHamptonうん、上記のテクニックはうまくいきました。さらに、バグ提出し、修正されました。
ズビン14年

あなたを祝福します、あなたは美しいろくでなし
アルトゥールサペック

/usr/lib/systemd/system/redis.serverにリンクされているredis.serviceファイル(/etc/systemd/system/multi-user.target.wants内)も編集する必要があることがわかりました。に変更--daemonize yesしました--daemonize no
マーティン
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.