Difference between revisions of "Tung mysql conf"

From CDOT Wiki
Jump to: navigation, search
(Instruction)
(Blanked the page)
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Installing and Configuring MySQL==
 
  
===Introduction===
 
In this page, you are going to install the MySQL server to your Fedora, and set a password to the root user.
 
MySQL is free database management system that is used by large web sites, such as Wordpress, Wikipedia, Twitter and Facebook. Because it threatens Oracle's business, it has been acquired by Oracle. It will stop future open source development.
 
 
===Instruction===
 
#Login as root user
 
#Install the MySQL server: <code><font color=green >yum mysql-server</font></code>
 
#Configure the MySQL server to start when the Fedora is booted: chkconfig mysqld on
 
#Start the MySQL server: service mysqld start
 
#Set a password to MySQL server's root user: /usr/bin/mysqladmin -u root password 'yourpassword'
 
#Test the root account: mysql -u root -p . Enter your new password. You should enable to login as root.
 
#Logout the session: quit
 

Latest revision as of 00:12, 31 July 2011