使用yum安装MySQL详细步骤

安装mysql源

  • centos系统中不包含mysql的源,需要先安装mysql源

    1.官网下载源。使用图形界面操作系统进入mysql官网,进入以下界面。

    2.在CentOS中,使用cd命令进入希望保存文件的路径,使用wget命令下载rpm包。例:​​wget -c https://dev.mysql.com/get/mysql57-community-release-el7-  11.noarch.rpm​​ 

    3.rpm -ivh mysql57-community-release-el7-11.noarch.rpm

安装mysql

  • 使用命令​​yum list | grep mysql​​可以查看仓库中能够安装的mysql包
  • 安装MySQL:​​yum install mysql-server​
  • 设置mysql的root账户密码,可参考:​​ MySQL解压版安装配置​
  • 运行mysql :​​mysql -u root -p​

安装遇到的问题集锦:

NO1. ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

参考解答

​http://aiezu.com/article/mysql_cant_connect_through_socket.html​

查看服务是否已经启动;

No2.ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

centos7 Mycat/MySQL/MariaDB安装部署_数据库

解答:

1,停止mysql服务

systemctl stop mysqld.service

2,修改配置文件无密码登录

vim /etc/my.cnf

在最尾部加上

skip-grant-tables

保存

3,启动mysql

systemctl start mysqld.service

4,登录musql

mysql -u root

此处注意不要加-p

5,修改密码,mysql5.7用此语法

use mysql ;
update mysql.user set authentication_string=password('123456') where user='root' ;

6,回到第二步骤去掉加上的

skip-grant-tables

保存 重启mysql就ok了

3.mysql> update mysql.user set authentication_string=password('111111') where user='root';

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '('111111') where user='root'' at line 1



centos7 Mycat/MySQL/MariaDB安装部署_mariadb_02


centos7 Mycat/MySQL/MariaDB安装部署_linux_03

 4.开启远程登陆


-bash: GRANT: 未找到命令

 

centos7 Mycat/MySQL/MariaDB安装部署_mysql_04

原因:这是由于系统默认会查找/usr/bin下的命令,如果这个命令不在这个目录下,当然会找不到命令,我们需要做的就是映射一个链接到/usr/bin目录下,相当于建立一个链接文件。
首先得知道mysql命令或mysqladmin命令的完整路径,比如mysql的路径是:/usr/local/mysql/bin/mysql,我们则可以这样执行命令:

# ln -s /usr/local/mysql/bin/mysql /usr/bin

 

centos7 Mycat/MySQL/MariaDB安装部署_mariadb_05

centos7 Mycat/MySQL/MariaDB安装部署_mysql_06

第二: mariadb安装

  1. apt update
  2. apt install mariadb-server
  3. mysql -u root -p

mariadb无密码登录解决方式

  1. 创建用户
CREATE DATABASE data;
CREATE USER 'data'@'localhost' IDENTIFIED BY '123456';
GRANT ALL PRIVILEGES ON data.* TO testuser@localhost;
FLUSH PRIVILEGES;
quit