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.获取软件包

bash 复制代码
-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.安装

bash 复制代码
因为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

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

bash 复制代码
[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/'
bash 复制代码
[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
bash 复制代码
安装初始化,会产生密码
[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
bash 复制代码
mysql服务开启ssl加密功能,安装和启用 ssl,不启用 ssl 可忽略这一步
[root@node1 mysql]# bin/mysql_ssl_rsa_setup
bash 复制代码
[root@node1 mysql]# bin/mysqld_safe --user=mysql &

3.3.配置环境变量

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

bash 复制代码
[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.启动,报错 ,解决,成功

bash 复制代码
启动,报错
[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.修改密码

bash 复制代码
[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.提供服务脚本

bash 复制代码
[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安装的机子中拷一份配置文件

bash 复制代码
[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

bash 复制代码
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.重启报错-已解决

原来是有进程在进行

相关推荐
mmsx36 分钟前
android sqlite 数据库简单封装示例(java)
android·java·数据库
zpjing~.~2 小时前
Mongo 分页判断是否有下一页
数据库
2401_857600952 小时前
技术与教育的融合:构建现代成绩管理系统
数据库·oracle
秋恬意2 小时前
Mybatis能执行一对一、一对多的关联查询吗?都有哪些实现方式,以及它们之间的区别
java·数据库·mybatis
潇湘秦2 小时前
一文了解Oracle数据库如何连接(1)
数据库·oracle
雅冰石2 小时前
oracle怎样使用logmnr恢复误删除的数据
数据库·oracle
web前端神器2 小时前
mongodb给不同的库设置不同的密码进行连接
数据库·mongodb
从以前2 小时前
Berlandesk 注册系统算法实现与解析
数据库·oracle
Muko_0x7d22 小时前
Mongodb
数据库·mongodb
Ren_xixi3 小时前
redis和mysql的区别
数据库·redis·mysql