qq_tracker_code_advanced_default

Posts Tagged ‘Mysql’

Change root password of MySQL

To Change root Password of mysql you can change it by using mysqladmin command. if you want to change or update root password then execute this command mysqladmin -u root -p’oldpassword’ password newpassword For example, If old password is tejas, and set new password to tejasbarot, enter: mysqladmin -u root -p’tejas’ password tejasbarot

Read the rest of this entry »

Installing,Starting Service & Setting root password of My Sql

First set Yum repository of MySQL then install it by using following command yum -y install mysql-server mysql  or yum -y install mysql*  Starting MySQL Server:- Execute Following Command:- chkconfig mysqld on /etc/init.d/mysqld start or service mysqld restart Setting Up root Password:- mysqladmin -u root password NEWPASSWORD

Read the rest of this entry »