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
CarlFK edited this page Apr 26, 2011
·
8 revisions
What an admin does to bring up the site for a conference.
make sure you change the email addresses in the lca_info.py file
Create the database:
$ sudo apt-get install postgresql python-psycopg2
$ sudo su postgres
$ psql
postgres=# CREATE DATABASE dbname;
postgres=# CREATE USER user WITH PASSWORD 'pw';
postgres=# GRANT ALL PRIVILEGES ON DATABASE dbname to user;