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

« back to all changes in this revision

Viewing changes to doc/setup/install_proc.txt

  • Committer: wagrant
  • Date: 2008-09-18 10:06:34 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1051
doc/setup/install_proc.txt: Refactor, and install rsync to make things
                            less painful.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
##########################################################################
20
20
# Apt packages
21
21
##########################################################################
22
 
sudo apt-get install subversion build-essential debootstrap             \
 
22
sudo apt-get install rsync subversion build-essential debootstrap       \
23
23
                     apache2 libapache2-mod-python libapache2-svn       \
24
24
                     python2.5-dev python-svn python-webpy python-cjson \
25
25
                     postgresql python-pygresql php5 php5-pgsql         \
30
30
##########################################################################
31
31
 
32
32
# Set the postgres user's postgres password
33
 
sudo -u postgres psql template1
34
33
# At the prompt type (substituting <***password***> with a real one).
35
 
ALTER USER postgres WITH ENCRYPTED PASSWORD '<***password***>';
36
 
\q
 
34
sudo -u postgres psql -c "ALTER USER postgres WITH ENCRYPTED PASSWORD '<***password***>'"
37
35
 
38
36
##########################################################################
39
37
# Installing ivle
60
58
# Leave others default.
61
59
# Note: This will cause IVLE to get installed to /opt/ivle
62
60
 
 
61
sudo mkdir -p /home/informatics/{repositories/{users,groups},sessions,logs,jails,jailssrc}
 
62
sudo chown -R www-data:www-data /home/informatics/{repositories,sessions,logs}
 
63
 
63
64
sudo ./setup.py build
64
65
sudo ./setup.py install
65
66
 
70
71
 
71
72
# Make the "repositories", "sessions" and "logs" directories in the home.
72
73
# Make sure they are owned by www-data.
73
 
cd /home/informatics
74
 
sudo mkdir -p repositories/users repositories/groups sessions logs
75
 
sudo chown -R www-data:www-data repositories sessions logs
76
 
 
77
 
cd /home/informatics/ivle_svn
78
74
 
79
75
# Create a user
80
76
sudo ./makeuser.py [OPTIONS] <login> 'Firstname Lastname' <rolenm> -p <password>
109
105
##########################################################################
110
106
# User management server: usrmgt-server
111
107
##########################################################################
112
 
# To start the user management server:
113
 
cd /opt/ivle/scripts
114
 
sudo ./usrmgt-server
115
 
# usrmgt-password is the password entered in setup.py config (usrmgt_magic)
116
 
# Note that the port number and usrmgt password are recorded in
117
 
# the automatically created init.d script: doc/setup/usrmgt-server.init
118
108
 
119
 
# To run it at boot time:
120
109
sudo cp doc/setup/usrmgt-server.init /etc/init.d/usrmgt-server
121
110
sudo chown root:root /etc/init.d/usrmgt-server
122
 
sudo chmod 700 /etc/init.d/usrmgt-server  # so world can't read database magic
 
111
sudo chmod +x /etc/init.d/usrmgt-server
 
112
 
 
113
# To start it now:
 
114
sudo /etc/init.d/usrmgt-server start
 
115
 
 
116
# To run it at boot time:
123
117
sudo update-rc.d usrmgt-server defaults 99  # create symlinks in /etc/rc*.d
124
118
 
125
119
##########################################################################