Linux 下安装mysql 使用yum 方式

1          1. 首先要选择安装mysql的组件包

安装客户端

Yum install mysql

安装服务端

yum install mysql-server mysql-devel

2         2.  配置

 vi /etc/my.cnf     编辑MySQL的配置文件添加

default-character-set=utf8

 

3         3.  启动MySQL服务

chkconfig mysqld on             设置MySQL服务随系统启动自启动

chkconfig --list mysqld         检查MySQL自启动

mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off 如果2--5on的状态就OK

service mysqld start             启动MySQL服务

service mysqld stop               停止MySQL服务

 

4.      MySQLroot用户设置密码
MySQL
在刚刚被安装的时候,它的root用户是没有被设置密码的。首先来设置MySQLroot密码。

创建root管理员:

          mysqladmin -u root password welcome1

 登录:

          mysql -u root -p 输入密码即可。

忘记密码:

service mysqld stop

/usr/bin/mysqld_safe --skip-grant-tables

mysqld_safe --user=mysql --skip-grant-tables --skip-networking &  mysql -u root

use mysql

update user set password=password("welcome1") where user="root";

   flush privileges

然后执行

mysql -u root -p

Enter passwd :

更改连接权限

grant all privileges on *.* to 'root'@'%' identified by 'welcome' with grant option;