| Support Home > VPS > FreeBSD > Administration > vinstall > MySQL > | Sunday, July 20, 2008 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
MySQL4.1To install MySQL4.1, connect to your Virtual Private Server via SSH, su to root, and run the following command: # vinstall mysql4.1The vinstall script installs all the necessary files for you to run MySQL4.1. MySQL5.0 is now available for install on the VPS v3 server. To start the MySQL daemon from the command prompt, you can do so using the following command: # /usr/local/bin/mysqld_safe --pid-file=/var/db/mysql/username.pid &The line listed above can be found in a startup script created when MySQL installed. The script is located in the /usr/local/etc/rc.d directory called mysql-server.sh. When the server reboots the script will execute and start MySQL. The script can also be used to start and stop MySQL at any time by running these commands: # /usr/local/etc/rc.d/mysql-server.sh stopWhile the the MySQL daemon is running, a mysql.sock file will be stored in the /tmp directory. This file is necessary for MySQL to function. If you are receiving errors when trying to connect to MySQL, check to make sure this file exists. If it is missing restart MySQL. NOTES: After you install MySQL it is not necessary to run the mysql_install_db as described in Section 6.7 of the MySQL manual. The mysql ClientTo use the mysql client, connect to the VPS v2/v3 server via SSH, su to root, and run the following command:# /usr/local/bin/mysql -u rootThis command will start the MySQL client as the root user. You can add more users by following the directions in the MySQL Reference Manual: The MySQL client is designed to be able to report errors in numerous languages. While this does not affect the way you use MySQL, having the error messages in your native language could make understanding the errors easier. For more information, see the following: To make starting MySQL easier, you can create a file with all your start-up options instead of having to type in all the different flags at the command prompt. To do this, create a file in your /etc/ directory called my.cnf. The contents of the file would look like this if you wanted MySQL to report error messages in Japanese: [mysqld] Database Maintenance and RepairIt is not uncommon for a database to require maintenance or repair. Corruption in a database can cause slower response times and/or higher memory usage with MySQL. It is recommended that occasional checks are made to help keep MySQL running efficiently. A helpful mysqlcheck utility is available with the Mysql installation. Please see the following for more information:mysqlcheck Utility DocumentationManpages are available and can be accessed by typing the following during an SSH session with your Virtual Private Server:# man -M $HOME/usr/local/mysql/man mysqlThere is also a considerable volume of documentation on the MySQL web site: |
|
| Home | Site Map | Customer Backroom | Copyright © 1997-2008 AlpineWeb Design |