我用的系统是Hiweed-debian-0.6
需要软件
httpd-2.0.53.tar.gz2
postgresql-7.4.7.tar.gz2 (FUDforum_2-6-11不支持postgresql-8.x)
php-4.3.10.tar.bz2
phpPgAdmin-3.5.2.tar.bz2
FUDforum_2-6-11.tar.bz2 (如果用zlib版本的,则在编译php是要加上zlib支持)
1。安装postgresql
http://172.24.17.1/bbs/read.php?tid=116275&fpage=12.动态安装apache2.x
动态安装方便以后升级。
#tar zvxf httpd-2.0.53.tar.gz
#cd httpd-2.0.53
#./configure --prefix=/usr/local/apache2 --enable-so --enable-mods-shared=most
#make
#make install
修改httpd.conf,寻找Add Type application/x-tar .tgz 在下面添加
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
3.安装php4.x
#tar jxvf php-4.3.10.tar.bz2
#cd php-4.3.10
#./configure --prefix=/usr/local/php --with-pgsql=/usr/local/pgsql --with-apxs2=/usr/local/apache2/bin/apxs
#make
#make install
启动一下apache
/usr/local/apache2/bin/apachectl start (为了方便开机启动,把它也加到/etc/init.d/postgresql中吧!)
4。安装phpPgAdmin
#tar jxvf phpPgAdmin-3.5.2.tar.bz2
#mv phpPgAdmin /usr/local/apache2/htdocs
#cd /usr/local/apache2/htdocs/phpPgAdmin/conf
#cp config.inc.php-dist config.inc.php
修改config.inc.php中的相应参数.
#vi config.inc.php
// Display name for the server on the login screen
$conf['servers'][0]['desc'] = 'PostgreSQL';
// Hostname or IP address for server. Use '' for UNIX domain socket.
$conf['servers'][0]['host'] = '127.0.0.1';//这里原来留空,改为127.0.0.1
// Database port on server (5432 is the PostgreSQL default)
$conf['servers'][0]['port'] = 5432;
// Change the default database only if you cannot connect to template1
$conf['servers'][0]['defaultdb'] = 'test';
$conf['extra_login_security'] = false;//原来是ture,改为false。 (ture时postgres不能登录数据库)
//其他参数不动,保存退出。
修改/usr/local/pgsql/data/postgresql.conf (重要)
#tcpip_socket = false
改为
tcpip_socket = true
重新启动一下postmaster。
在浏览器中输入
http://localhost/phpPgAdmin/index.php用postgres登录,密码不用输。进入后第一件事修改超级用户postgres的密码,以便进行下面的步骤。
#vi /usr/local/pgsql/data/pg_hba.conf
local all all md5----这里改为md5
# IPv4-style local connections:
host all all 127.0.0.1 255.255.255.255 md5----这里改为md5
# IPv6-style local connections:
#host all all ::1 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff trust------这行注解掉
重新启动一下postmaster,在浏览器中输入
http://localhost/phpPgAdmin/index.php这此要密码才能登录了。(还可以该apache,让phpPgAdmin目录只能本机访问)
现在创建一个数据库用户bbs(自定),他有创建权限,但不是超级用户,退出。用bbs登录phpPgAdmin,创建一个数据库forum(自定)
5。安装FUDforum_2-6-11(不支持postgresql8.x,居然被识别为3.4.x,费了我好多时间)
#tar jxvf #tar FUDforum_2-6-11.tar.gz2
#mv FUDforum2 /usr/local/apache2/htdocs
#mkdir /usr/local/apache2/FUDforum
#chmod 777 /usr/local/apache2/FUDforum
#chmod 777 -R /usr/local/apache2/htdocs/FUDforum2
在浏览器中输入
http://localhost/FUDforum2/install.php第一个界面默认吧!
第二个界面比较关键,还记得前面数据库中创建的用户bbs和数据库forum吗?填上吧!ip用172.24.6.32(偶内网的ip)
只要第二步通过了,后面的都没有难度。
完了,在浏览器中输入
http://localhost/FUDforum2/index.php漂亮的论坛出来了:)