Archive for November 21st, 2006
You are browsing the archives of 2006 November 21.
You are browsing the archives of 2006 November 21.
curl
mysql
zend optimizer
1. compile mysql @ /usr/local/mysql
2. compile curl @ /usr/local
3. compile apache @ /usr/local
4. compile php4.3 @ /usr/local
##mysql 4.0
shell> groupadd mysql
shell> useradd -g mysql mysql
shell> gunzip < mysql-VERSION.tar.gz | tar -xvf -
shell> cd mysql-VERSION
shell> ./configure –prefix=/usr/local/mysql –localstatedir=/var/lib/mysql
shell> make
shell> make install
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> cp support-files/mysql.server /etc/init.d/mysql4
shell> cd /usr/local/mysql
shell> bin/mysql_install_db –user=mysql
shell> chown -R root .
shell> chown [...]