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
When upgrading Reggie the Registration system you can use the following sh file
uber/puppet/apply_node.sh localhost
Once completed use sep reset_uber_db to drop all the database tables
Turn off the Uber Daemon
Are you getting an error stating that Port 8282 is not free on 0.0.0.0? SSH into your vagrant instance and use the command sudo supervisorctl stop all
Clear NGINX Cache
As root:
find /var/cache/nginx/**/* -type f | xargs rm
Completely Wipe Out Database
DROP SCHEMA public CASCADE;
CREATE SCHEMA IF NOT EXISTS public AUTHORIZATION rams_db;
GRANT ALL ON SCHEMA public TO public;
GRANT ALL ON SCHEMA public TO rams_db;