当前位置: 首页 > article >正文

mysql源码安装

Linux环境

1、mysql下载地址:https://dev.mysql.com/downloads/mysql/5.7.html#downloads

下载参考:

在这里插入图片描述

2、把下载的 MySQL 压缩包上传到 Linux 服务器

3、解压mysql-5.7.39-linux-glibc2.12-x86_64.tar.gz

tar -zxvf mysql-5.7.39-linux-glibc2.12-x86_64.tar.gz

4、把解压后的文件移动到 /usr/local 目录下

mv mysql-5.7.39-linux-glibc2.12-x86_64 /usr/local/mysql

5、创建MySQL组合用户

groupadd mysql

useradd -r -g mysql mysql

6、创建数据存储目录

mkdir /usr/local/mysql/data

7、修改相关权限

chown -R mysql:mysql /usr/local/mysql

chmod -R 777 /usr/local/mysql/

8、MySQL初始化操作,记录临时密码

cd /usr/local/mysql/bin

./mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data

输出内容如下:

[root@hecs-399223 bin]# ./mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
2023-10-27T06:29:18.581041Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2023-10-27T06:29:18.826360Z 0 [Warning] InnoDB: New log files created, LSN=45790
2023-10-27T06:29:18.868528Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2023-10-27T06:29:18.928878Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 288aaf07-7492-11ee-8151-fa163e92ea6c.
2023-10-27T06:29:18.931018Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
2023-10-27T06:29:19.409290Z 0 [Warning] A deprecated TLS version TLSv1 is enabled. Please use TLSv1.2 or higher.
2023-10-27T06:29:19.409316Z 0 [Warning] A deprecated TLS version TLSv1.1 is enabled. Please use TLSv1.2 or higher.
2023-10-27T06:29:19.409839Z 0 [Warning] CA certificate ca.pem is self signed.
2023-10-27T06:29:19.670575Z 1 [Note] A temporary password is generated for root@localhost: Y2Eu.8du7Fi<

注意:复制保存 MySQL初始化密码 Y2Eu.8du7Fi<

9、创建MySQL配置文件 /etc/my.cnf,执行如下命令即可自动创建

cat > /etc/my.cnf <<EOF
[mysqld]
port = 3306
basedir=/usr/local/mysql
datadir=/usr/local/mysql/data
max_connections=200
max_connect_errors=10
character-set-server=utf8mb4
default_authentication_plugin=mysql_native_password

[mysql]
default-character-set=utf8mb4

[client]
port=3306
default-character-set=utf8mb4
EOF

10、配置开机自启动

cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld
chmod 755 /etc/init.d/mysqld
chkconfig --add mysqld
chkconfig mysqld on

启动mysql

systemctl start mysqld

11、设置环境变量

echo "export PATH=$PATH:/usr/local/mysql/bin/" >> /etc/profile

source /etc/profile

12、通过临时密码登录MySQL并修改密码

#登录
mysql -u root -p
ALTER USER 'root' @'localhost' IDENTIFIED BY '123456';

flush privileges;

13、开启远程访问

grant all privileges on *.* to "root"@"%" identified by "123456";  

flush privileges;

13、开启远程访问

grant all privileges on *.* to "root"@"%" identified by "123456";  

flush privileges;

安装结束!


http://www.kler.cn/a/106712.html

相关文章:

  • maven的optional选项说明以及具体应用
  • H5页面多个视频如何只同时播放一个?
  • 力扣 最长公共前缀-14
  • MFC程序崩溃时生成dmp文件
  • 接口文档的编写
  • 机器学习-35-提取时间序列信号的特征
  • 求分数序列和(c++题解)
  • Go基础——数组、切片、集合
  • C++之lambda匿名函数总结(二百四十五)
  • 【ARM 嵌入式 C 入门及渐进 10 -- 冒泡排序 选择排序 插入排序 快速排序 归并排序 堆排序 比较介绍】
  • Mysql,SqlServer,Oracle获取库名 表名 列名
  • 配置VUE环境过程中 npm报错的处理方案以及VUE环境搭建过程
  • 线扫相机DALSA--采集卡Base模式设置
  • 工控安全与网络安全有什么不同?
  • 在Win11上部署ChatGLM2-6B详细步骤--(上)准备工作
  • 算法通关村第三关-白银挑战双指针思想
  • 操作系统缓冲区管理(单缓冲,双缓冲,循环缓冲,缓冲池)
  • SpringMVC(四)域对象共享数据
  • Django 全局配置 settings 详解
  • 730. 机器人跳跃问题--二分
  • 【报错】java.sql.SQLException: Invalid utf8mb3 character string: ‘ACED00‘
  • Fourier分析导论——第1章——Fourier分析的起源(E.M. Stein R. Shakarchi)
  • vue 使用openlayers导出渲染的地图
  • 在ffmpeg中,网络视频流h264为什么默认的转为YUV而不是其他格式
  • 工业4.0的安全挑战与解决方案
  • IDEA配置HTML和Thymeleaf热部署开发