mysql二进制安装...

一.下载链接

https://mirrors.aliyun.com/mysql/MySQL-8.0/mysql-8.0.28-linux-glibc2.12-x86_64.tar.xz

二.官方下载文档

MySQL :: MySQL 8.3 Reference Manual :: 2.2 Installing MySQL on Unix/Linux Using Generic Binaries

三.开始下载

3.1.获取软件包

-rw-r--r--  1 root root 1.2G  3月  7 11:20 mysql-8.0.28-linux-glibc2.12-x86_64.tar.xz

3.2.安装

因为yum方式下载过来做了下参照
[root@node1 ~]# groupadd -g 27 -r mysql
[root@node1 ~]# useradd -u 27 -g 27 -c 'MYSQL Server' -r -s /sbin/nologin mysql
[root@node1 ~]# tail -1 /etc/passwd
mysql:x:27:27:MYSQL Server:/home/mysql:/sbin/nologin

 #就是单纯参照安装文档一步不落的做一遍

[root@node1 ~]#  tar xf /root/mysql-8.0.28-linux-glibc2.12-x86_64.tar.xz -C /usr/local/
创建软连接(换名)
[root@node1 local]# ln -sv /usr/local/mysql-8.0.28-linux-glibc2.12-x86_64/ /usr/local/mysql
'/usr/local/mysql' -> '/usr/local/mysql-8.0.28-linux-glibc2.12-x86_64/'
[root@node1 local]# cd mysql
[root@node1 mysql]# mkdir mysql-files
[root@node1 mysql]# chown mysql:mysql mysql-files
[root@node1 mysql]# chmod 750 mysql-files
安装初始化,会产生密码
[root@node1 mysql]# bin/mysqld --initialize --user=mysql
2024-03-07T03:41:13.560187Z 0 [System] [MY-013169] [Server] /usr/local/mysql-8.0.28-linux-glibc2.12-x86_64/bin/mysqld (mysqld 8.0.28) initializing of server in progress as process 2019
2024-03-07T03:41:13.576251Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started.
2024-03-07T03:41:14.149745Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended.
2024-03-07T03:41:15.543105Z 6 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: 8h.o8s<qNIM3
mysql服务开启ssl加密功能,安装和启用 ssl,不启用 ssl 可忽略这一步
[root@node1 mysql]# bin/mysql_ssl_rsa_setup
[root@node1 mysql]# bin/mysqld_safe --user=mysql &

 3.3.配置环境变量

为了在在任何文件夹下都调用到某一指定目录下的文件,我们就应该配置环境变量(指定目录路径),让系统在你所配置的路径下去自己查找这些文件然后运行,而不用我们去手动打开这些文件所在目录再运行

[root@node1 mysql]# vi /etc/profile.d/mysql.sh
export PATH=$PATH:/usr/local/mysql/bin/
[root@node1 mysql]# source /etc/profile.d/mysql.sh

3.4.启动,报错 ,解决,成功

启动,报错
[root@node1 mysql]# mysql -uroot -p'8h.o8s<qNIM3'
mysql: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory


解决:
[root@node1 mysql]# yum install ncurses-compat-libs
再启动:
[root@node1 mysql]# mysql -uroot -p'8h.o8s<qNIM3'
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.28

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 

 3.5.修改密码

[root@node1 mysql]# mysqladmin -uroot -p'8h.o8s<qNIM3' password 'Mnwl_0816'
[root@node1 mysql]# mysql -uroot -p'Mnwl_0816'
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 8.0.28 MySQL Community Server - GPL

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 

3.6.提供服务脚本

[root@node1 mysql]# mysqladmin -uroot -p'Mnwl_0816' shutdown

添加 mysql 服务到系统服务
[root@node1 mysql]# cp support-files/mysql.server /etc/init.d/mysql.server

[root@node1 mysql]# chkconfig --add mysqld

 3.7.从yum安装的机子中拷一份配置文件

[root@node1 mysql]# scp -r 192.168.32.132:/etc/my.cnf.d/ /etc/
[root@node1 mysql]# scp -r 192.168.32.132:/etc/my.cnf /etc/

3.8.修改相关参数

[root@node1 my.cnf.d]# vim mysql-server.cnf 

basedir=/usr/local/mysql/
datadir=/usr/local/mysql/data/
socket=/tmp/mysql.sock

log-error=/usr/local/mysql/data/mysqld.log
pid-file=/usr/local/mysql/data/mysqld.pid

3.9.重启报错-已解决

原来是有进程在进行

 

  • 6
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

隔壁小木在努力冲

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值