File: beta1_install_from_scratch.txt

package info (click to toggle)
gforge 4.5.14-22etch13
  • links: PTS
  • area: main
  • in suites: etch
  • size: 13,004 kB
  • ctags: 11,918
  • sloc: php: 36,047; sql: 29,050; sh: 10,538; perl: 6,496; xml: 3,810; makefile: 341; python: 263; ansic: 256
file content (239 lines) | stat: -rw-r--r-- 8,464 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
This is Ron's attempt to install gforge (and all its components) from scratch.
You will notice that I use no rpm's, this is for security and ease of
updating.  With so many components it is hard for me to keep track of what is
what, so I start from scratch and then I see where everything is.  This is
Redhat 8 and Gforge beta 1.  I will update this for mailman whenever I finally
know how to do it myself.  Also, I am working on cvs/unix admin scripts, and I
will add those in here also when they are finished.  You should still read the
document on how to install located at

http://gforge.org/docman/view.php/1/34/gforge.pdf

It is being updated as of (March 6, 2003), so if something doesn't work,
search the board.  If you find something wrong please tell me.

1) Downloads
	a) postgres 7.3.2 -- (for the database)
		ftp://ftp.at.postgresql.org/db/www.postgresql.org/pub/source/v7.3.2/postgresql-7.3.2.tar.gz
	b) apache 1.3.27 -- (for the webserver)
		http://ftp.epix.net/apache/httpd/apache_1.3.27.tar.gz
	c) php 4.3.1 -- (for the programming language)
		http://www.php.net/get/php-4.3.1.tar.gz/from/us3.php.net/mirror
	d) gzip 1.1.4 -- (for php, needed by gd library, not sure why)
		ftp://swrinde.nde.swri.edu/pub/png/src/zlib-1.1.4.tar.gz
	e) openssl/mod_ssl 
		I have not installed these yet as I am still figuring how they work, my site works fine so far without them
	f) qmail
		When I have mailman figured out I will add that also, for now do what I did and follow
		http://www.lifewithqmail.org/lwq.html
	g) jabber
		when mailman is figured out i will add this also
	h) gforge3beta1 -- (for gforge)
		http://gforge.org/download.php/31/gforge-3.0b1.tar.bz2
	i) cvsweb -- (to browse the cvs repositories, use my replacement :))
		http://stud.fh-heilbronn.de/~zeller/download/cvsweb-1.112.tar.gz
	j) libpng 
		ftp://swrinde.nde.swri.edu/pub/png/src/libpng-1.2.5.tar.gz
	k) libjpeg
		http://www.ijg.org/files/jpegsrc.v6b.tar.gz

2) Install
	a) su to root, move all files to /usr/local/src, then change directory to /usr/local/src
	b) gunzip *.gz
	c) bzip2 -dc gforge-3.0b1.tar.bz2 | tar xvf -
	d) tar xvf all the tar files (can copy and past below)
		tar xvf postgresql-7.3.2.tar
		tar xvf httpd-2.0.44.tar
		tar xvf php-4.3.1.tar
		tar xvf zlib-1.1.4
		tar xvf cvsweb-1.112.tar
	3) cd httpd-1.3.27
		./configure --prefix=/usr/local/apache --enable-so
		./make
		./make install
		edit /usr/local/apache/conf/httpd.conf to listen to your name/ip and port

		copy this file (listed below) as root to a file called /etc/init.d/httpd
START AFTER THIS LINE ===========================================
#!/bin/bash
. /etc/rc.d/init.d/functions
case "$1" in
        start)
                echo "Starting httpd daemon..."
                /usr/local/apache/bin/apachectl start
                ;;

        stop)
                echo "Stopping httpd daemon..."
                /usr/local/apache/bin/apachectl stop
                ;;

        restart)
                $0 stop
                sleep 1
                $0 start
                ;;

        status)
                /usr/local/apache/bin/apachectl status
                ;;

        *)
                echo "Usage: $0 {start|stop|restart|status}"
                exit 1
                ;;
esac
END BEFORE THIS LINE=============================================
		cd /etc/init.d
		chmod 700 httpd 
		If you want to make apache(httpd) start and stop on boot and shutdown add this
		(note* this is for redhat, may work with others)
		cd ../rc3.d
		ln -s ../init.d/httpd S68httpd
		ln -s ../init.d/httpd K68httpd
		cd ../rc5.d
		ln -s ../init.d/httpd S68httpd
		ln -s ../init.d/httpd K68httpd
	
		You can double check that the start and stop script works by 
		cd /etc/init.d
		./httpd restart
		cd ..
	e) cd postgresql-7.3.2
		./configure
		gmake
		su
		gmake install
		/usr/sbin/adduser postgres
		mkdir /usr/local/pgsql/data
		chown postgres /usr/local/pgsql/data
		su - postgres
		/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data
		/usr/local/pgsql/bin/postmaster -D /usr/local/pgsql/data >logfile 2>&1 &
		/usr/local/pgsql/bin/createdb test
		/usr/local/pgsql/bin/psql test
		ps wuxa | grep postmaster; and kill -9 the pid
		cd data

		edit /usr/local/pgsql/data/pg_hba.conf (mine looks like this, at the bottom, I tried to use my hostname for the the ip, but it wouldn't work for some reason)
local   all         all                                             trust
host    all         all         192.168.1.111       255.255.255.0   trust
host    all         all         127.0.0.1         255.255.255.255   trust
		type exit (makes you root again)
		cd /etc/init.d
		create a file called /etc/init.d/postgres (here is mine)
START AFTER THIS LINE====================================
#!/bin/bash
. /etc/rc.d/init.d/functions
case "$1" in
        start)
                echo "Starting PostgreSQL daemon..."
                su - postgres -c '/usr/local/pgsql/bin/pg_ctl start -W -D /usr/local/pgsql/data \
                               -l /usr/local/pgsql/data/logfile -o "-i -h 127.0.0.1"'
                ;;

        stop)
                echo "Stopping PostgreSQL daemon..."
                /usr/local/pgsql/bin/pg_ctl stop -m smart -D /usr/local/pgsql/data
                ;;

        restart)
                $0 stop
                sleep 1
                $0 start
                ;;

        status)
                /usr/local/pgsql/bin/pg_ctl status -D /usr/local/pgsql/data
                ;;

        *)
                echo "Usage: $0 {start|stop|restart|status}"
                exit 1
                ;;
esac
END BEFORE THIS LINE =======================================
		chmod 700 postgres
		If you want to make postgres start and stop on boot and shutdown add this
		(note* this is redhat, may work for you)
		cd ../rc3.d
		ln -s ../init.d/S67postgres
		ln -s ../init.d/K67postgres
		cd ../rc5.d
		ln -s ../init.d/S67postgres
		ln -s ../init.d/K67postgres
	
		You can double check that the start and stop script works by 
		cd /etc/init.d
		./postgres restart
			
	f) cd zlib-1.1.4
		./configure
		make test
		make install
		cd ..

	g) cd libpng-1.2.5 (only use this if you want jgraph support for gnatt
charts)
		figure out which scripts/makefile.(which one you need) makefile
		make test
		make install
		
	h) cd jpeg-6b (only use this if you want jgraph support for gnatt
charts)
		./configure
		make
		make install

	i) cd php-4.3.1
		./configure --with-apxs2=/usr/local/apache/bin/apxs
			--with-gd
			--with-pgsql
			--with-jpeg-dir=/usr/local/lib	(where you installed)
			--with-png-dir=/usr/local/lib	(where you installed)
			--with-zlib-dir=/usr/local/lib	(where you installed)
		*** note *** you may have to make a symbolic links if configure can't find libjpeg.so|a or libpng.so|a

		make
		make install
		cd ..
		cp /usr/local/src/php-4.3.1/php.ini-dist /usr/local/lib/php.ini
		You need to edit /usr/local/apache/conf/httpd.conf so php will work, add these lines

		LoadModule php4_module modules/libphp4.so
		AddType application/x-httpd-php .php	

		/etc/init.d/httpd restart

		If you want to test do this,
		cd /usr/local/apache/htdocs
		vi index.php (copy the following)
		<?php
			phpinfo();
		?>
		chmod 755 index.php
		Open a broswer and goto http://my_url_or_ip.com/index.php

	j) follow install instructions for gforge 
		http://gforge.org/docman/view.php/1/34/gforge.pdf
		WARNING -- the current document is not up to date, when you add the gforge user is postgres you may need
		to make him/her a superuser in postgres
		* su - postgres
		* psql -U postgres
		* update pg_shadow set usesuper = 't' where usename = 'gforge';
		This will allow you to update tracker statistics, I have not tried this yet, but I know it didn't
		work before.

	k) cd /usr/local/src/cvsweb
		mkdir /var/www/gforge-3.0/cgi-bin
		cp cvsweb.cgi /var/www/gforge-3.0/cgi-bin
		cp cvsweb.conf /usr/local/apache/conf
		Now in order to make this work, you need to have a repository set up an a project going.  So I assume you have a repository called /cvsroot/gforge and a project called gforge.  Now I will show you how to configure cvsweb.cgi and cvsweb.con.
		i) I get an error right away because of gzip compression, so I go to cvsweb.conf and go 
to the line where $allow_compress = 1 and set it to 0.
		ii) Failed to spawn rlog, figure it out
		Go to the project page and attempt to access cvs like this
			
3) Test
	go to the website
	http://gforge.org/docman/view.php/1/34/gforge.pdf