Hello guys,
after updating phabricator this morning it throws this error:
Phabricator is not configured to serve cluster requests. Set cluster.addresses in the configuration to whitelist cluster hosts before sending requests that use a cluster authentication mechanism.
Regarding that there was never a cluster configured, I'm a bit clueless right now.
Updated via:
#!/usr/bin/env sh ROOT=/data/phabricator # Stopping the webserver echo Stopping the webserver... /etc/init.d/php5-fpm stop /etc/init.d/nginx stop # Stopping the daemons echo Stoppting daemons... sudo -u phabricator $ROOT/phabricator/bin/phd stop sudo -u phabricator $ROOT/phabricator/bin/aphlict stop # Updating echo Updating working copies... cd $ROOT/libphutil sudo -u phabricator git pull cd $ROOT/arcanist sudo -u phabricator git pull cd $ROOT/phabricator sudo -u phabricator git pull # Upgrading echo Upgrading db scheme... sudo -u phabricator $ROOT/phabricator/bin/storage upgrade # Starting services echo Starting services... /etc/init.d/php5-fpm start /etc/init.d/nginx start # Starting daemons echo Starting daemons... sudo -u phabricator $ROOT/phabricator/bin/phd start sudo -u phabricator $ROOT/phabricator/bin/aphlict start --client-host localhost
Hope this isn't too messy. Can you help me?
BR
3c7