-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ownership problem with Ubuntu redis-server #150
Comments
I think we can fix that easier by just changing the Can you try changing that in the code in your Ubuntu 14.04 machine and see if it changes anything else? So add a section in the params to change |
My workaround was to set |
On debian jessie (which we also run), a stock install of |
The same happens on debian wheezy. |
…g to be owned by redis:redis, as advised by voxpupuli/puppet-redis#150
Can confirm (albeit with 16.04) that it changes the group of |
* "On Ubuntu 14.04, redis has an init script that does chown redis:redis $RUNDIR $PIDFILE (where RUNDIR=/var/run/redis and PIDFILE=$RUNDIR/redis-server.pid) at startup. This causes puppet to "fix" the ownership of /var/run/redis (to redis:root unless config_owner and config_group have been set differently), which triggers a restart of redis-server, which changes the ownership of /var/run/redis, etc. forever. * Closes voxpupuli#150
* "On Ubuntu 14.04, redis has an init script that does chown redis:redis $RUNDIR $PIDFILE (where RUNDIR=/var/run/redis and PIDFILE=$RUNDIR/redis-server.pid) at startup. This causes puppet to "fix" the ownership of /var/run/redis (to redis:root unless config_owner and config_group have been set differently), which triggers a restart of redis-server, which changes the ownership of /var/run/redis, etc. forever. * Closes #150
* "On Ubuntu 14.04, redis has an init script that does chown redis:redis $RUNDIR $PIDFILE (where RUNDIR=/var/run/redis and PIDFILE=$RUNDIR/redis-server.pid) at startup. This causes puppet to "fix" the ownership of /var/run/redis (to redis:root unless config_owner and config_group have been set differently), which triggers a restart of redis-server, which changes the ownership of /var/run/redis, etc. forever. * Closes #150
* "On Ubuntu 14.04, redis has an init script that does chown redis:redis $RUNDIR $PIDFILE (where RUNDIR=/var/run/redis and PIDFILE=$RUNDIR/redis-server.pid) at startup. This causes puppet to "fix" the ownership of /var/run/redis (to redis:root unless config_owner and config_group have been set differently), which triggers a restart of redis-server, which changes the ownership of /var/run/redis, etc. forever. * Closes voxpupuli#150
On Ubuntu 14.04,
redis-server
has an init script that doeschown redis:redis $RUNDIR $PIDFILE
(whereRUNDIR=/var/run/redis
andPIDFILE=$RUNDIR/redis-server.pid
) at startup. This causes puppet to "fix" the ownership of/var/run/redis
(toredis:root
unlessconfig_owner
andconfig_group
have been set differently), which triggers a restart ofredis-server
, which changes the ownership of/var/run/redis
, etc. forever.Is it possible to tell puppet not to care about the owner or group of
/var/run/redis
beyond the initial creation?The text was updated successfully, but these errors were encountered: