~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to doc/setup/install_proc.txt

  • Committer: matt.giuca
  • Date: 2009-01-12 01:03:59 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1077
Reverted revisions 1059 and 1069 - renaming the DB user from 'postgres' to
    'ivleuser'.
    Heart was in the right place, but currently doesn't work because postgres
    owns the relations and we've no way to correct that yet (since we manually
    run the .sql script as postgres).

    This will be reverted back again once that's solved.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
# Configure postgres
30
30
##########################################################################
31
31
 
32
 
# Create a new database user which will be used by IVLE to talk to the DB, and
33
 
# set this user's password.
 
32
# Set the postgres user's postgres password
34
33
# At the prompt type (substituting <***password***> with a real one).
35
 
sudo -u postgres psql -c "CREATE USER ivleuser WITH ENCRYPTED PASSWORD '<***password***>'"
 
34
sudo -u postgres psql -c "ALTER USER postgres WITH ENCRYPTED PASSWORD '<***password***>'"
36
35
 
37
36
##########################################################################
38
37
# Installing ivle
46
45
# Create a postgres database
47
46
# (only need the first line if it was previously created and is now changed)
48
47
sudo -u postgres dropdb ivle
49
 
sudo -u postgres createdb --owner ivleuser ivle
 
48
sudo -u postgres createdb ivle
50
49
sudo -u postgres createlang plpgsql ivle
51
50
sudo -u postgres psql -d ivle < userdb/users.sql
52
51
 
126
125
# Create a postgres database
127
126
# (only need the first line if it was previously created and is now changed)
128
127
sudo -u postgres dropdb ivle_forum
129
 
sudo -u postgres createdb --owner ivleuser ivle_forum
 
128
sudo -u postgres createdb ivle_forum
130
129
sudo -u postgres psql -d ivle_forum < userdb/forum_schema.sql
131
130
sudo -u postgres psql -d ivle_forum < userdb/forum_data.sql
132
131