MySQL数据库在CentOS 6.8环境下的安装

一、本节目的

1、MySQL数据库在CentOS 6.8环境下的安装;

2、MySQL root用户忘记密码的修改方法;

3、MySQL常用SQL语句的用法。

二、步骤

1、检查本地YUM源

检查本地YUM中可用的与mysql相关的软件包

[root@hadoop00 ~]# yum list | grep mysql

出现如图所示错误,需要重新挂载一下系统安装镜像

[root@hadoop00 ~]# mount -o loop /root/CentOS-6.8-x86_64-bin-DVD1.iso /mnt/centos

[root@hadoop00 ~]# mount

MySQL数据库在CentOS 6.8环境下的安装_第1张图片

[root@hadoop00 ~]# yum list | grep mysql

MySQL数据库在CentOS 6.8环境下的安装_第2张图片

2、安装MySQL相关包

 [root@hadoop00 ~]# yum install -y mysql-server mysql mysql-devel

3、开启mysql服务

[root@hadoop00 ~]# service mysqld start

4、修改mysql用户root的密码

[root@hadoop00 ~]# mysqladmin -u root password '000000'

5、登录MySQL

[root@hadoop00 ~]# mysql -uroot -p000000

MySQL数据库在CentOS 6.8环境下的安装_第3张图片

6、MySQL中修改字符编码

查看字符编码

mysql> show variables like "%char%";

MySQL数据库在CentOS 6.8环境下的安装_第4张图片

复制配置文件模板为/etc/my.cfg

[root@hadoop00 ~]# cp /usr/share/doc/mysql-server-5.1.73/my-large.cnf /etc/my.cnf

[root@hadoop00 ~]# vi /etc/my.cnf

添加如下配置

MySQL数据库在CentOS 6.8环境下的安装_第5张图片

重启mysqld服务

[root@hadoop00 ~]# service mysqld restart

Stopping mysqld:                                           [  OK  ]

Starting mysqld:                                           [  OK  ]

你可能感兴趣的:(Hadoop,数据库,mysql,centos,大数据,hadoop)