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

« back to all changes in this revision

Viewing changes to doc/setup/install_proc.txt

  • Committer: stevenbird
  • Date: 2008-02-18 08:39:01 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:494
more cleanups of installation instructions based on silly misunderstandings

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
cd $IVLE_SVN
86
86
 
87
87
# Create a postgres database
88
 
sudo -u postgres dropdb ivle  # if it was previously created and now changed
 
88
# (only need the first line if it was previously created and is now changed)
 
89
sudo -u postgres dropdb ivle
89
90
sudo -u postgres createdb ivle
90
91
sudo -u postgres psql -d ivle < userdb/users.sql
91
92
 
93
94
./setup.py listmake
94
95
./setup.py config
95
96
 
96
 
# "Root directory" - type "/" or "/ivle"
 
97
# "Root directory" - type "/" or "/ivle" (without the quotes)
97
98
# "UID of web server process" - 1000 at this stage (informatics)
98
99
# Leave others default.
99
100
# Note: This will cause IVLE to get installed to /opt/ivle
106
107
# role = guest/student/tutor/lecturer/admin
107
108
 
108
109
# Configure the Apache HTTP server
109
 
sudo cp setup/ivle.conf /etc/apache2/sites-available
 
110
sudo cp doc/setup/ivle.conf /etc/apache2/sites-available
110
111
# MODIFY the first few lines so it is specific to your server.
111
112
vim /etc/apache2/sites-available/ivle.conf
112
113