Install a new server (CentOS)

From Organic Design wiki
Revision as of 00:02, 31 March 2006 by Sven (talk | contribs) (formatting & typos)
  1. ---------------------- Installation on wikiexpert.com -------------------------- #
  2. Original rpm apache installation in /var/www controlled with /usr/sbin/apachectl
  3. /var/www/html/index.shtml is the index file
  4. Source install at /usr/local/apache2
  5. Apache now controlled with /usr/local/apache2/bin/apachectl
  6. ---------------------- Installation on wikiexpert.com -------------------------- #

tar -zxvf httpd-2.2.0.tar.gz cd httpd-2.2.0 ./configure make make install

  1. ---------------------- Install zlib for domxml ------------------------ #

cd /tmp wget http://www.zlib.net/zlib-1.2.3.tar.gz tar -zxvf zlib-1.2.3.tar.gz cd zlib-1.2.3 ./configure make make install

  1. -------------------- Installing mysql 5.0.19 from source ------------------- #
  2. see INSTALL-BINARY

wget ftp://mirror.services.wisc.edu/mirrors/mysql/Downloads/MySQL-5.0/mysql-standard-5.0.19-linux-i686.tar.gz /usr/sbin/groupadd mysql /usr/sbin/useradd -g mysql mysql cd /usr/local gunzip < /tmp/mysql-standard-5.0.19-linux-i686.tar.gz | tar xvf - ln -s /usr/local/mysql-standard-5.0.19-linux-i686 mysql cd mysql ./scripts/mysql_install_db --user=mysql chown -R root . chown -R mysql data chgrp -R mysql . ./bin/mysqld_safe --user=mysql &


  1. ------------------ ming in /usr/local/lib/ -------------------- #
  2. See http://www.opaque.net/wiki/index.php?MingInstall,
  3. http://www.opaque.net/wiki/index.php?PlatformIssues

cd /tmp wget http://superb.dl.sourceforge.net/sourceforge/ming/ming-php-0.3.0.tar.gz cd ming-0.3.0 cp -rf * ../../php-4.4.2/ext/ming/


  1. ------------------------ PHP-4.4.2 -------------------------- #

cd /tmp tar -zxvf php-4.4.2.tar.gz cd php-4.4.2 ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql --with-ming --with-xml --with-domxml --with-zlib-dir=/usr/local/lib make make install cp php.ini-dist /usr/local/lib/php.ini vi /usr/local/apache2/conf/httpd.conf

  1. Add: LoadModule php4_module libexec/libphp4.so
  2. Add: AddType application/x-httpd-php .php .phtml