You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default service directory is /var/run/vault, which is created by the cookbook - but on many systems, /var/run is mounted as tmpfs. This means that /var/run/vault is not present if the server reboots. The creation of /var/run/vault should be the responsibility of the init script, so that we don't run into this problem.
The text was updated successfully, but these errors were encountered:
I'm running Ubuntu 14.04. The issue is worse when using sysv, because it has nowhere to put the pidfile. When using upstart, a pidfile is not needed, but it will still attempt to chdir to /var/run/vault and crash when that directory doesn't exist; in this case, node['hashicorp-vault']['service']['directory'] can be overridden to anything persistent, like /etc/vault.
The default service directory is
/var/run/vault
, which is created by the cookbook - but on many systems,/var/run
is mounted as tmpfs. This means that/var/run/vault
is not present if the server reboots. The creation of/var/run/vault
should be the responsibility of the init script, so that we don't run into this problem.The text was updated successfully, but these errors were encountered: