FSUpthreads-3.5-VOLS.tar
gcc-2.95.2-VOLS.tar
Glib-1.5-VOLS.tar
gzip-1.2.4-VOLS.tar
make-3.78.1-VOLS.tar
zlib-1.1.4-VOLS.tar
以上软件可以到http://www.sco.com/skunkware/ -> OpenServer packages 下载。
openssl-0.9.7f.tar
apache_1.3.34.tar
mysql-4.1.10.tar
php-4.4.2.tar
以上软件请到相应的网站下载。
安装顺序:
一、安装sco openserver 5.06,不要安装SCO OpenServer Enterprise System Internet FastStart ,该软件会与apache的端口冲突。
二、安装OpenServer Development System 。
三、安装以上第一组软件(带VOL)。
四、设置相应的参数(注意:#号为根用户的提示符,下同):
#cp -p /usr/include/pthread/stdtypes.h /usr/local/lib/gcc-lib/i386-pc-sco3.2v5.0.5/2.95.2/include/pthread/
更改系统搜索路径/.profile为:
PATH=/usr/local/bin:/bin:/etc:/usr/bin:/tcb/bin
#CFLAGS="-O3 –DSCO -mpentium" LDFLAGS=-static CXX=gcc CXXFLAGS="-O3 -DSCO -mpentium -felide-constructors"
五、安装mysql:
#cd mysql-4.4.10
#./configure --prefix=/usr/local/mysql --with-charset=gb2312 --with-extra-charsets=complex --enable-thread-safe-client --enable-local-infile --with-named-z-libs=no --disable-shared --without-debug --without-isam --with-innodb
#make
#make install
创建mysql用户组和mysql用户
#cd /usr/local/mysql
#mkdir var
#cd bin
#./mysql_install_db
#cd ..
#cd ..
#chown -R mysql:mysql /usr/local/mysql
#cd mysql/bin
#./mysqld_safe &
#vi /etc/rc2.d/S99mysql
增加以下二行:
echo "Starting MYSQL Server..."
/usr/local/mysql/bin/mysqld_safe &
六、安装openssl-0.9.7f:
进入openssl-0.9.7f的源程序目录
#./config --prefix=/usr/local
#make
#make install
七、安装php4.4.2和apache:
进入apache_1.3.34源程序的目录
#./configure
进入 php-4.4.2源程序目录
#./configure --with-mysql=/usr/local/mysql --with-apache=../apache_1.3.34 -with-zlib --with-gd --with-openssl=/usr/local --enable-ftp --disable-cli --with-xml
#make
#make install
#cp /tmp/php-4.4.2/libphp4.la /tmp/apache_1.3.34/src/modules/php4/libphp4.a
再进入apache_1.3.34源程序目录
#./configure --prefix=/usr/local/apache --enable-module=so --activate-module=src/modules/php4/libphp4.a
#make
#make install
进入 php-4.4.2源程序目录
#make clean
#./configure --with-apxs=/usr/local/apache/bin/apxs --with-config-file=/usr/local/apache --with-mysql=/usr/local/mysql --with-zlib --with-gd --with-openssl=/usr/local --enable-ftp --disable-cli --with-xml
#make
#make install
修改/usr/local/apache/conf/httpd.conf文件,找到以下一行:
LoadModule php4_module libexec/libphp4.so
在这行前加#号注释掉。
找到“AddType application/x-tar .tgz”,在一行增加:
AddType application/x-httpd-php .php