While i\'m deploying my rails application through capistrano to my CentOS server all the time i have been receiving this error:
*** ERROR: Phusion Pas
The problem seems to be systemd private temp feature, you can disable that for httpd:
mkdir /etc/systemd/system/httpd.service.d
echo "[Service]" > /etc/systemd/system/httpd.service.d/nopt.conf
echo "PrivateTmp=false" >> /etc/systemd/system/httpd.service.d/nopt.conf
systemctl daemon-reload
systemctl restart httpd
Passenger 5.0 no longer use /tmp
for status information so it should work out of box even on private temps.