MySQL 5.0.37 SQL

PDF MySQL 5.0.37 SQL Database Server and Client is compiled from source code distribution with SSL support enabled. Visit the MySQL website on www.mysql.org to download the MySQL database server source distribution.


QIG - MySQL 5.0.37 SQL

Change working directory to the location where you saved the MySQL source distribution release. For the purpose of this installation guide, we will assume you have saved the MySQL source distribution in /usr/local/src directory.

    Change working directory:
    • cd /usr/local/src

    Using tar, unpack files from the archive:

    • tar --gunzip -xvf mysql-5.0.45.tar.gz

    Change working directory:

    • cd /usr/local/src/mysql-5.0.45

    As super user, add new user and group:

    • /usr/sbin/groupadd mysql
    • /usr/sbin/useradd -g mysql mysql

    Prepare the installation:

    • ./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql/data \
    • --with-unix-socket-path=/var/run/mysql/mysql.sock --with-big-tables \
    • --with-openssl=/usr/local/ssl --enable-thread-safe-client

    Compile and install:

    • make
    • make install

    Copy the recommended MySQL configuration file to its destination folder within your operating system:

    • cp support-files/my-medium.cnf /etc/my.cnf

    Change working directory:

    • cd /usr/local/mysql

    Change ownership of the working directory:

    • chown -R mysql.
    • chgrp -R mysql.

    Install default databases:

    • /usr/local/mysql/bin/mysql_install_db --user=mysql

    Change ownership of the working directory:

    • chown -R root .


Perl 5.8.x

    Usually a stable and recent enough Perl scripting language is provided for your convenience by the Operating System Vendor and we recommend using the release that the Vendor included in its Operating System distribution. For further information about the Perl scripting language or to download its most recent release, visit the Perl website on www.perl.org.


PHP 5.2.3

    PHP 5.2.3 compiled from source code distribution with Digi-CA™ cryptographic patch.
    • Patch Name Version Comments
    • Digi-CA Crypto 1.0 for enabling extended cryptography

    Before you compile your PHP package, you will need to apply the DigiCA™ Cryptographic patch, that will enable the PHP language with additional cryptography related features required by Digi-CA™. The patch is provided with the source distribution of Digi-CA™ and you may find it in the PHP/patches sub-directory of your Digi-CA™ source distribution directory tree. Visit PHP website on www.php.net to download the PHP package. To perform a quick installation, use the Quick Installation guide provided below.