我的编程空间,编程开发者的网络收藏夹
学习永远不晚

MySQL8.0安装

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

MySQL8.0安装


0.环境:

os : CentOS release 6.10 (Final)

Msyql: mysql8.0.14


1.下载官方打包好的二进制安装包:


#wget https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.14-linux-glibc2.12-x86_64.tar.xz


8.0采用了新的.xz压缩方式,文件很小,只有350M左右


2.解压:

tar -xJvf mysql-8.0.14-linux-glibc2.12-x86_64.tar.xz


3.放到/usr/local下


[root@iceman local]# ln -s mysql-8.0.14-linux-glibc2.12-x86_64 mysql


4.配置参数文件 /etc/my.cnf


[mysqld]

server-id                      = 1

port                           = 3306

datadir                        = /data/mysql

socket                         = /tmp/mysql.sock

pid-file                       = /tmp/mysqld.pid

log-error                      = error.log

slow-query-log                 = 1

slow-query-log-file            = slow.log

long_query_time                = 0.2

log-bin                        = bin.log

binlog_format                 =ROW

character-set-client-handshake = FALSE

character-set-server           = utf8mb4

collation-server               = utf8mb4_unicode_ci

init_connect                   ='SET NAMES utf8mb4'

innodb_buffer_pool_size        = 200M

join_buffer_size               = 10M

sort_buffer_size               = 2M

read_rnd_buffer_size           = 2M

log_timestamps                 = SYSTEM


5.创建用户和目录

[root@iceman ~]# groupadd mysql

[root@iceman ~]# useradd -r -g mysql -s /bin/false mysql   ### /bin/false的意思是,禁止一起登录行为

[root@iceman ~]# mkdir -p /data/mysql

[root@iceman ~]# chown -R mysql:mysql /data/mysql/

[root@iceman ~]# chmod -R 775 /data/mysql/


6.初始化数据库:可以用--initialize-insecure不生成密码

[root@iceman bin]# pwd

/usr/local/mysql/bin

[root@iceman bin]# ./mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/data/mysql


初始化的时候遇到如下两个问题,用Yum 安装上即可。


./mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory

yum -y install libaio


./mysqld: error while loading shared libraries: libnuma.so.1: cannot open shared object file: No such file or directory

yum -y install numactl


7.设置启动文件:

#cp /usr/local/mysql/support-files/mysql.server  /etc/init.d/mysql

--启动数据库:

# /etc/init.d/mysql start

Starting MySQL.Logging to '/data/mysql/error.log'.

 SUCCESS! 


8.修改环境变量


# vim /etc/profile.d/mysql.sh

export PATH=$PATH:/usr/local/mysql/bin


# source /etc/profile.d/mysql.sh 


9 .修改密码

mysql> show databases;

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

mysql> 

mysql> 

mysql> alter user root@localhost identified by 'Hellxxxeiyun!@#$';

Query OK, 0 rows affected (0.01 sec)


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

MySQL8.0安装

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

2024-04-02

Mysql8.0安装(Redhat7)

下载tar包(一般是手动下载tar包): wget https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.11-linux-glibc2.12-x86_64.tar.gz 将文件移动到 /usr/loc
Mysql8.0安装(Redhat7)
2015-03-23

如何安装mysql8.0

这篇文章给大家分享的是有关如何安装mysql8.0的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。方法:1、下载并解压安装包,双击msi文件,进入向导界面;2、选择“mysql Servers”,将版本添加至右侧;
2022-11-30

ansible一键安装mysql8.0

ansbile安装:# ansible在CentOS7中需要安装epel仓库yum install -y epel-releaseyum install -y ansible安装有好几种方法,yum安装是最简单的,安装ansible不是重点。我的版本如下:[r
ansible一键安装mysql8.0
2015-12-30

MYSQL8.0版本安装失败!

Mysql8 安装失败第一次安装失败Windows Server 2012首先是使用mysql的最新安装包去安装,但是安装包在执行到 starting mysql server 时,就卡住不动了。手动去服务中启动 显示无法启动服务 helpmsg 3534 原
MYSQL8.0版本安装失败!
2020-05-12

阿里云esc 安装 mysql8.0

打开 连接工具,我用的是 MobaXterm_Personal_12.1 (官网下载地址:https://moba.en.softonic.com/)连接到 ecs,然后移除 默认的 mariadb 数据库: yum remove mariadb-libs.x
阿里云esc 安装 mysql8.0
2022-01-31

编程热搜

目录