Browse archives
User login |
How to install MySQL from source on FreeBsd or LinuxMySQL is a fast, multi-threaded, multi-user and robust SQL (Structured Query Language) database server. It provides a nifty API which makes it easy to integrate into other applications, including PHP. The most important configuration parameters include: --without-bench Do not compile the set of benchmarking tests. Unless you will specifically be using these, using this option will speed up your build time. --with-extra-charsets=none This builds a faster MySQL server by only using the ISO-8859-1 (Latin1) characterset. Unless you are using a language other than English, this is a good option to select. --disable-shared Do not build a shared libmysqlclient.so library. If your build fails and complains about not being able to create this file, using this switch is a good work-around. --enable-thread-safe-client Build the MySQL client binary with suport for threads. First of all, you should to add a user and group for mysqld to run as: On Linux: On FreeBsd: To build MySql follow the next steps: # mkdir /usr/local/mysql/data Change ownership of the MySQL binaries to root and ownership of the data directory to the user that you will run mysqld as: # chown -R root /usr/local/mysql # chmod 700 /usr/local/mysql/data To start MySQL by hand, run: # /usr/local/mysql/bin/safe_mysqld --user=mysql & (MySQL 3.x) If this is your first-time installation of MySQL, you'll need to set up the initial mysql database, which contains all database privilege information, and establish a mysqld root password. # scripts/mysql_install_db |
||||||||||||||||||||||||||||||||||||||||||