共计 1422 个字符,预计需要花费 4 分钟才能阅读完成。
CentOS 7 下本地安装了 MySQL 5.7, 但和 springboot 整合 jpa 时会出现 hibernateException, 不知道为什么, 换个 MySQL5.6 版本的 MySQL, 源码安装, cmake 一直过不去, 后来改成 rpm 安装。
本地安装了 mysql5.7, 但和 springboot 整合 jpa 时会出现 hibernateException, 不知道为什么, 换个 mysql5.6 版本的 mysql, 源码安装, cmake 一直过不去, 后来改成 rpm 安装
1, 获取 mysql5.6
ftp://ftp.mirrorservice.org/sites/ftp.mysql.com/Downloads/MySQL-5.6/
下载:
其中 el6 标识 centos 6, el7 标识 centos 7
2, 安装
rpm -ivh MySQL-*
3, 启动
systemctl start mysql
4, 查看初始密码
cat /root/.mysql_secret
5, 更改密码
mysql -uroot -pKAKt5JmEjm6B8omV
SET PASSWORD = PASSWORD(
'root'
);
6, 远程登陆设置
mysql> user mysql;
mysql> select host, user, password from user;
mysql> update user set password=password('root') where user='root';
mysql> update user set host='%' where user='root' and host='localhost';
授权
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '这里是你的密码' WITH GRANT
7, 设置开机启动
[root@localhost ~]# chkconfig mysql on
[root@localhost ~]# chkconfig --list | grep mysql
8, MySQL 的默认安装位置
/var/lib/mysql/ #数据库目录
/usr/share/mysql #配置文件目录
/usr/bin #相关命令目录
/etc/init.d/mysql #启动脚本
9, 修改默认字符集等
vim /etc/my.cnf
[client]
password = root
port = 3306
default
-character-
set
=utf8
[mysqld]
port = 3306
character_set_server=utf8
character_set_client=utf8
collation-server=utf8_general_ci
#(注意 linux 下 mysql 安装完后是默认:表名区分大小写,列名不区分大小写;0:区分大小写,1:不区分大小写)
lower_case_table_names=1
#(设置最大连接数,默认为 151,MySQL 服务器允许的最大连接数 16384;)
max_connections=1000
[mysql]
default
-character-
set
= utf8
10, 查看字符集
show variables like '%collation%';
show variables like '%char%';
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2017-07/145758.htm
正文完
星哥玩云-微信公众号