redis-server 可执行文件可以与 .conf 文件以及 --cmd 行选项一起使用吗?
Can redis-server executable can be used with .conf file as well as -- cmd line option?
我需要在启动 redis 时将默认的 .conf 文件传递给 redis-server 可执行文件,同时我想在不触及 .conf 文件的情况下运行 redis-server 可执行文件时覆盖一些配置参数
您可以只将 configuration 作为参数传递给进程,然后使用 --
标志参数覆盖每个属性。
例如
redis-server myredis.conf --requirepass "hello world"
我需要在启动 redis 时将默认的 .conf 文件传递给 redis-server 可执行文件,同时我想在不触及 .conf 文件的情况下运行 redis-server 可执行文件时覆盖一些配置参数
您可以只将 configuration 作为参数传递给进程,然后使用 --
标志参数覆盖每个属性。
例如
redis-server myredis.conf --requirepass "hello world"