单机版的mysql安装

Posted 锋锋2019

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单机版的mysql安装相关的知识,希望对你有一定的参考价值。

查是否安装了mysql:
centos6:
rpm -qa |grep mysql
centos7:
rpm -qa|grep mariadb
或rpm -qa |grep mysql

有老的版本可以执行命令卸载:

rpm -e --nodeps mysql-libs

 

1、

cat > /etc/yum.repos.d/mysql-community-el7.repo<<‘EOF‘

[mysql57-community]

name=MySQL 5.7 Community Server

baseurl=http://mirror.tuna.tsinghua.edu.cn/mysql/yum/mysql57-community-el7/

enabled=1

gpgcheck=0

EOF

2.

yum install mysql-community-server -y

systemctl restart mysqld

# mysqld.log中查询密码

grep password /var/log/mysqld.log 

2019-04-09T07:28:44.292450Z 1 [Note] A temporary password is generated for root@localhost: wg:V45ci4ljpz!r

3.改/etc/my.cnf

 

4.重启 

#登陆后修改成自己的密码:

mysql> alter user user() identified by ‘test123456‘;

 

 5、 查看授权情况

select user,host from mysql.user;

 

 

以上是关于单机版的mysql安装的主要内容,如果未能解决你的问题,请参考以下文章

MySQL单机安装

MySQL数据库管理单机环境下MySQL Cluster的安装

MySQL5.6单机部署安装

MySQL5.6单机部署安装

mysql for linux6.8单机版安装

centos部署单机spark大数据环境--安装mysql