Chinaunix首页 | 论坛 | 博客
  • 博客访问: 607163
  • 博文数量: 263
  • 博客积分: 6000
  • 博客等级: 准将
  • 技术积分: 2555
  • 用 户 组: 普通用户
  • 注册时间: 2008-02-26 11:20
文章分类

全部博文(263)

文章存档

2011年(10)

2010年(19)

2009年(170)

2008年(64)

我的朋友

分类: Mysql/postgreSQL

2008-05-17 18:43:15

MySQL, the most popular Open Source SQL database management system, is developed, distributed, and supported by MySQL AB. MySQL AB is a commercial company, founded by the MySQL developers. It is a second generation Open Source company that unites Open Source values and methodology with a successful business model.

Install Mysql database server in Debian

#apt-get install mysql-server mysql-client limysqlclient15-dev

This will install all the required packages for mysql database server.

Now you need to configure MySQL to listen on all interfaces, not just localhost for this you need to edit /etc/mysql/my.cnf and comment out the line bind-address = 127.0.0.1 save and exit the file.

#vi /etc/mysql/my.cnf

#bind-address = 127.0.0.1

Now you need to restart MySQL server using the following command

#/etc/init.d/mysql restart


Testing Mysql Networking

Now you need to check that networking is enabled or not using the following commnd.

#netstat -tap

In the output you should see similar to the following line

tcp 0 0 *:mysql *:* LISTEN 3281/mysqld


Setting Mysql Root password

Irf you want to set Mysql Root password use the following command

#mysqladmin -u root password mysqlrootpassword

In the above command you need to replace mysqlrootpassword with your secret password

Once you set the root password you can test this password using the following command

#mysqladmin -h serverip -u root password mysqlrootpassword

Once you loggedin in to the mysql database you should see the following mysql prompt

mysql>

If you want to install web interface or GUI tool for Mysql check

阅读(491) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~