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

« back to all changes in this revision

Viewing changes to doc/setup/install_proc.txt

  • Committer: dcoles
  • Date: 2008-02-19 23:19:17 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:517
forum: Added basic install documentation

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
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.
125
126
# Restart the server
126
127
sudo apache2ctl -k restart
127
128
 
 
129
##########################################################################
 
130
# Setting up phpBB Forum in IVLE
 
131
##########################################################################
 
132
#
 
133
# Fix permissions for install
 
134
cd www/php/phpBB3
 
135
chmod 777 cache/ files/ store/ images/avatars/upload config.php
 
136
 
 
137
# Add database to Postgres server
 
138
sudo -u postgres createdb forum
 
139
 
 
140
# Log on to IVLE and open the Forum Application (/forum)
 
141
# Click 'INSTALL' tab, 'Proceed to next step'
 
142
# Check that requirements are OK
 
143
# Click 'Start install'
 
144
# Fill in Database configuration
 
145
#   Database type: PostgreSQL 7.x/8.x
 
146
#   # localhost doesn't work, but localhost.csse.unimelb.edu.au does?
 
147
#   Database server hostname: 127.0.0.1
 
148
#   Database name: forum
 
149
#   Database username: postgres
 
150
#   Database password: ##Same as password for ivle db##
 
151
# Complete the rest of the wizard with site settings
 
152
 
 
153
# Remove the Install directory to enable access
 
154
rm -rf install/
128
155
 
129
156
##########################################################################
130
157
# Installing Pound reverse proxy (optional)