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

« back to all changes in this revision

Viewing changes to doc/setup/install_proc.txt

  • Committer: mattgiuca
  • Date: 2008-03-09 21:37:04 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:677
userservice: Fix error message text.
usrmgt-server: Major fix - missing create svn object.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
sudo apt-get install gcc libc6 libc6-dev make
39
39
sudo apt-get install apache2 libapache2-mod-python
40
40
sudo apt-get install python2.5-dev python-svn python-webpy python-numpy python-matplotlib
41
 
sudo apt-get install postgresql python-pygresql
 
41
sudo apt-get install postgresql python-pygresql python-ldap
 
42
sudo apt-get install php5 php5-pgsql
42
43
 
43
44
# Note: I had a lot of trouble with the python-svn package.
44
45
# After playing around a bit it started working.
60
61
sudo ./setup.py install
61
62
cd ..
62
63
 
 
64
# Documentation packages needed for tutorial system: Docutils, Epydoc
 
65
# wget each of these, untar them, and then do: sudo python ./setup.py install
 
66
 
 
67
http://docutils.sourceforge.net/docutils-snapshot.tgz
 
68
http://downloads.sourceforge.net/epydoc/epydoc-3.0.1.tar.gz?use_mirror=optusnet
 
69
 
 
70
# Or using apt-get
 
71
# (Note: epydoc doesn't work on Fiesty using apt-get)
 
72
 
 
73
sudo apt-get install python-docutils python-epydoc
 
74
 
63
75
##########################################################################
64
76
# Configure postgres
65
77
##########################################################################
125
137
# Restart the server
126
138
sudo apache2ctl -k restart
127
139
 
 
140
##########################################################################
 
141
# Setting up phpBB Forum in IVLE
 
142
##########################################################################
 
143
# This should all be run from the SVN directory
 
144
 
 
145
# Create a postgres database
 
146
# (only need the first line if it was previously created and is now changed)
 
147
sudo -u postgres dropdb ivle_forum
 
148
sudo -u postgres createdb ivle_forum
 
149
sudo -u postgres psql -d ivle_forum < userdb/forum_schema.sql
 
150
sudo -u postgres psql -d ivle_forum < userdb/forum_data.sql
 
151
 
 
152
#Change to the installed IVLE directory
 
153
cd /opt/ivle
 
154
# Fix permissions for install
 
155
cd www/php/phpBB3
 
156
# At very minimum you apache user must be able to write to
 
157
# cache/ files/ store/ images/avatars/upload config.php
 
158
sudo chown -R www-data:www-data .
128
159
 
129
160
##########################################################################
130
161
# Installing Pound reverse proxy (optional)