linux启动redis服务器出现 no config file specified
时间: 2024-05-02 12:22:49 浏览: 57
完美解决linux上启动redis后配置文件未生效的问题
您好!对于您的问题,可以通过在启动命令中指定配置文件路径来解决。您可以使用以下命令启动Redis服务器:
```
redis-server /path/to/redis.conf
```
其中,`/path/to/redis.conf` 是您的Redis配置文件路径。如果您希望在默认位置查找配置文件,可以使用以下命令:
```
redis-server
```
此时Redis将在默认位置(通常是 `/etc/redis/redis.conf`)寻找配置文件并启动服务器。希望能帮到您!
阅读全文