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.重启报错-已解决

原来是有进程在进行

相关推荐
Karoku06631 分钟前
【企业级分布式系统】ELK优化
运维·服务器·数据库·elk·elasticsearch
小技与小术2 小时前
数据库表设计范式
数据库·mysql
安迁岚2 小时前
【SQL Server】华中农业大学空间数据库实验报告 实验三 数据操作
运维·服务器·数据库·sql·mysql
安迁岚2 小时前
【SQL Server】华中农业大学空间数据库实验报告 实验九 触发器
数据库·sql·mysql·oracle·实验报告
Loganer2 小时前
MongoDB分片集群搭建
数据库·mongodb
LKID体2 小时前
Python操作neo4j库py2neo使用之创建和查询(二)
数据库·python·neo4j
刘大浪2 小时前
后端数据增删改查基于Springboot+mybatis mysql 时间根据当时时间自动填充,数据库连接查询不一致,mysql数据库连接不好用
数据库·spring boot·mybatis
一只爱撸猫的程序猿2 小时前
简单实现一个系统升级过程中的数据平滑迁移的场景实例
数据库·spring boot·程序员
无敌岩雀2 小时前
MySQL中的索引
数据库·mysql
a_安徒生3 小时前
linux安装TDengine
linux·数据库·tdengine