Skip to content
CarlFK edited this page Apr 26, 2011 · 8 revisions

What an admin does to bring up the site for a conference.

  1. 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;