Installing MySQL on Linux
Sponsored Links
It's simple to install MySQL on Linux using the RPM file.
- Become the superuser if you are working in your account. (Type "su" and the prompt and give the root password).
- Change to the directory that has the RPM download.
- Type the following command at the prompt:
rpm -ivh "mysql_file_name.rpm"
Similarly you can also install the MySQL client and MySQL development RPMs if you've downloaded them.
Alternatively, you can install the RPMs through GnoRPM (found under System). - Now we'll set a password for the root user. Issue the following at the prompt.
mysqladmin -u root password mysqldata
where mysqldata is the password for the root. (Change this to anything you like). - It is now time to test the programs. Typing the following at the prompt starts the mysql client program.
mysql -u root -p
The system asks for the the password. Type the root password (mysqldata).
If you don't get the prompt for password, it might be because MySQL Server is not running. To start the server, change to /etc/rc.d/init.d/ directory and issue the command ./mysql start (or mysql start depending on the value of the PATH variable on your system). Now invoke mysql client program. - Once MySQL client is running, you should get the mysql> prompt. Type the following at this prompt:
show databases;
- You should now get a display similar to:
+----------------+ | Database | +----------------+ | mysql | | test | +----------------+ 2 rows in set (0.00 sec)
Okay, we've successfully installed MySQL on your system. Now let's look at some MySQL basics.
Click this button if you liked the article!
Comments, questions, feedback... whatever!
Page contents:
Recent Articles
Recent Blog Posts
Popular Articles
- Hotmail Sign In page
- Create a Hotmail account - Instructions
- Create Gmail address
- Download and install Outlook Express
- Get your free Gmail address
- Outlook Express new version
- Create my own email address
- Browers for Windows list
- Get email address
- Color combinations for web sites and pages
- Create Yahoo ID




