How do you configure mysql on linux

Questions by shilpak10   answers by shilpak10

Showing Answers 1 - 1 of 1 Answers

Prakash

  • Sep 22nd, 2007
 

For the configuration of MySql these dependencies are required as:
mysql-5.0
mysql-server-5.0
mysqlclient9-5.0
mysql-devel-5.0
php-mysql-5.0

install by rpm -i vh mysql-server-5.0.rpm and others also same

If configured in RHEL the .rpm are needed.
if configured in debian the .deb are needed and also one can do configuration as
apt-get install mysql-server-5.0
apt-get install mysql-client-5.0

After installing
 start the Mysql as
 /etc/rc.d/init.d/mysqld start  (RHEL)

/etc/init.d/mysql start      (Debian)

The default configuration file is in /etc/my.cnf

Ans ALso reset or assign a password as

     mysqladmin -u root password 'new-password

and do the rest.



  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions