centos 6.9 二进制安装包 安装mysql 5.7.29

1、下载Mysql安装包

访问官网下载链接 链接: https://dev.mysql.com/downloads/mysql/

选择如下 点击下载按钮 下载安装包,选和你操作系统一样的glibc版本即可。

文件名:mysql-5.7.29-linux-glibc2.12-x86_64.tar.gz
MD5: 60d95c0e76b700cee5b05eb96b5b97a2

在这里插入图片描述

2、安装Mysql 5.7.29

官方安装文档 链接: https://dev.mysql.com/doc/mysql-installation-excerpt/5.7/en/binary-installation.html

2.1、安装依赖包

yum search libaio

在这里插入图片描述

yum install libaio

在这里插入图片描述

2.2、安装Mysql

命令顺序如下 安装包放在/root/package/mysql/mysql-5.7.29-linux-glibc2.12-x86_64.tar.gz 【此为直接执行的命令,后续有命令解释。】

groupadd mysql
useradd -r -g mysql -s /bin/false mysql
cd /usr/local
tar -xzvf /root/package/mysql/mysql-5.7.29-linux-glibc2.12-x86_64.tar.gz
ln -s /usr/local//mysql-5.7.29-linux-glibc2.12-x86_64/ mysql
cd mysql
mkdir mysql-files
chown -R mysql:mysql mysql-files
chmod -R 750 mysql-files

cp /etc/my.cnf /etc/my.cnf.bak
echo -e "[mysqld]\ndatadir=/var/lib/mysql/data\nbasedir=/var/lib/mysql\nsocket=/var/lib/mysql/mysql.sock\nuser=mysql\nport=3306\ncharacter-set-server=UTF8MB4\nsymbolic-links=0\nsql-mode=STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION\nmax_connections=100000
\n[mysqld_safe]\nlog-error=/var/log/mysqld/mysqld.log\npid-file=/var/run/mysqld/mysqld.pid
\n[client]\nport=3306\nsocket=/var/lib/mysql/mysql.sock"  > /etc/my.cnf

chown mysql:mysql /etc/my.cnf

mkdir -p /var/lib/mysql/data
chown -R mysql:mysql /var/lib/mysql

mkdir -p /var/log/mysqld/
touch /var/log/mysqld/mysqld.log
chown -R mysql:mysql /var/log/mysqld
chmod 777 /var/log/mysqld/mysqld.log

mkdir -p /var/run/mysqld/
chown -R mysql:mysql /var/run/mysqld/
chmod -R 777 /var/run/mysqld/

mkdir -p /var/lib/mysql/bin
cp bin/mysqld_safe /var/lib/mysql/bin
chown -R mysql:mysql /var/lib/mysql

bin/mysqld --defaults-file=/etc/my.cnf --initialize --user=mysql
  
bin/mysql_ssl_rsa_setup

bin/mysqld_safe --user=mysql &

# Next command is optional
cp support-files/mysql.server /etc/init.d/mysql.server

其中执行bin/mysqld --defaults-file=/etc/my.cnf --initialize --user=mysql 会打印出Mysql的默认密码
最后一句:A temporary password is generated for root@localhost: Wyfu?iFAW8tY

[root@centos mysql]# bin/mysqld --defaults-file=/etc/my.cnf --initialize --user=mysql
2025-08-22T06:34:19.745367Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2025-08-22T06:34:19.745433Z 0 [Warning] 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release.
2025-08-22T06:34:19.745435Z 0 [Warning] 'NO_AUTO_CREATE_USER' sql mode was not set.
2025-08-22T06:34:19.745468Z 0 [ERROR] Can't find error-message file '/var/lib/mysql/share/errmsg.sys'. Check error-message file location and 'lc-messages-dir' configuration directive.
2025-08-22T06:34:20.155023Z 0 [Warning] InnoDB: New log files created, LSN=45790
2025-08-22T06:34:20.216669Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2025-08-22T06:34:20.225606Z 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: 08d4aa91-7f22-11f0-aa0c-000c29d02935.
2025-08-22T06:34:20.226319Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
2025-08-22T06:34:20.524985Z 0 [Warning] CA certificate ca.pem is self signed.
2025-08-22T06:34:20.660025Z 1 [Note] A temporary password is generated for root@localhost: yjG00vwU:yy8

其中执行bin/mysqld_safe --user=mysql & 是启动Mysql服务 日志如下

[root@centos ~]# cat  /var/log/mysqld/mysqld.log 
2025-08-22T06:34:54.016072Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2025-08-22T06:34:54.016110Z 0 [Warning] 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release.
2025-08-22T06:34:54.016112Z 0 [Warning] 'NO_AUTO_CREATE_USER' sql mode was not set.
2025-08-22T06:34:54.016126Z 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled
2025-08-22T06:34:54.016141Z 0 [Note] /usr/local/mysql/bin/mysqld (mysqld 5.7.29) starting as process 3159 ...
2025-08-22T06:34:54.016158Z 0 [ERROR] Can't find error-message file '/var/lib/mysql/share/errmsg.sys'. Check error-message file location and 'lc-messages-dir' configuration directive.
2025-08-22T06:34:54.025606Z 0 [Note] InnoDB: PUNCH HOLE support available
2025-08-22T06:34:54.025638Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2025-08-22T06:34:54.025640Z 0 [Note] InnoDB: Uses event mutexes
2025-08-22T06:34:54.025641Z 0 [Note] InnoDB: GCC builtin __sync_synchronize() is used for memory barrier
2025-08-22T06:34:54.025642Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2025-08-22T06:34:54.025644Z 0 [Note] InnoDB: Using Linux native AIO
2025-08-22T06:34:54.026330Z 0 [Note] InnoDB: Number of pools: 1
2025-08-22T06:34:54.026577Z 0 [Note] InnoDB: Using CPU crc32 instructions
2025-08-22T06:34:54.030713Z 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2025-08-22T06:34:54.052131Z 0 [Note] InnoDB: Completed initialization of buffer pool
2025-08-22T06:34:54.058882Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
2025-08-22T06:34:54.073457Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
2025-08-22T06:34:54.089622Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2025-08-22T06:34:54.089654Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2025-08-22T06:34:54.130145Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
2025-08-22T06:34:54.130436Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
2025-08-22T06:34:54.130439Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
2025-08-22T06:34:54.134360Z 0 [Note] InnoDB: 5.7.29 started; log sequence number 2629923
2025-08-22T06:34:54.134902Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/data/ib_buffer_pool
2025-08-22T06:34:54.138971Z 0 [Note] Plugin 'FEDERATED' is disabled.
2025-08-22T06:34:54.143146Z 0 [Note] InnoDB: Buffer pool(s) load completed at 250822 14:34:54
2025-08-22T06:34:54.153393Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
2025-08-22T06:34:54.153405Z 0 [Note] Skipping generation of SSL certificates as certificate files are present in data directory.
2025-08-22T06:34:54.153721Z 0 [Warning] CA certificate ca.pem is self signed.
2025-08-22T06:34:54.153738Z 0 [Note] Skipping generation of RSA key pair as key files are present in data directory.
2025-08-22T06:34:54.153777Z 0 [Note] Server hostname (bind-address): '*'; port: 3306
2025-08-22T06:34:54.153804Z 0 [Note] IPv6 is available.
2025-08-22T06:34:54.153810Z 0 [Note]   - '::' resolves to '::';
2025-08-22T06:34:54.153818Z 0 [Note] Server socket created on IP: '::'.
2025-08-22T06:34:54.154772Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
2025-08-22T06:34:54.157852Z 0 [Note] Event Scheduler: Loaded 0 events
2025-08-22T06:34:54.158060Z 0 [Note] 
[root@centos ~]# 

添加mysql的环境变量
vi /etc/profile 最后面添加2行

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

在这里插入图片描述

使得mysql环境变量生效

source  /etc/profile

配置Mysql开机自启动

chkconfig --add mysql.server

查看开机自启动列表

chkconfig --list

在这里插入图片描述

命令解释 注释版本

# 建立mysql用户组
groupadd mysql

# 建立一个系统用户名为mysql 这个用户属于mysql用户组,-g后面跟的是用户组名称,最后的mysql是用户名[可以任意指定用户名随你喜欢]。
useradd -r -g mysql -s /bin/false mysql

cd /usr/local

# 解压安装包到/usr/local目录下
tar -xzvf /root/package/mysql/ysql-5.7.29-linux-glibc2.12-x86_64.tar.gz

# 建立解压后目录的软连接名为mysql
ln -s /usr/local//mysql-5.7.29-linux-glibc2.12-x86_64/ mysql

# 进入解压后的目录
cd mysql

# 在解压后的目录下建立目录:mysql-files,更改mysql目录的属主和属组为mysql:mysql【之前建立的mysql用户组名和用户名】,并chmod 750
mkdir mysql-files
chown -R mysql:mysql mysql-files
chmod -R 750 mysql-files

# 先备份mysql默认的配置文件。然后建立mysql配置文件,最后的/etc/my.cnf是mysql配置文件路径,可以任意指定随你喜欢【此处使用了默认的mysql配置文件路径/etc/my.cnf便于理解】
cp /etc/my.cnf /etc/my.cnf.bak
echo -e "[mysqld]\ndatadir=/var/lib/mysql/data\nbasedir=/var/lib/mysql\nsocket=/var/lib/mysql/mysql.sock\nuser=mysql\nport=3306\ncharacter-set-server=UTF8MB4\nsymbolic-links=0\nsql-mode=STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION\nmax_connections=100000
\n[mysqld_safe]\nlog-error=/var/log/mysqld/mysqld.log\npid-file=/var/run/mysqld/mysqld.pid
\n[client]\nport=3306\nsocket=/var/lib/mysql/mysql.sock"  > /etc/my.cnf

# 建立后的配置文件内容如下
[root@centos ~]# cat /etc/my.cnf
[mysqld]
datadir=/var/lib/mysql/data
basedir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
port=3306
character-set-server=UTF8MB4
symbolic-links=0
sql-mode=STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION
[mysqld_safe]
log-error=/var/log/mysqld/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
[client]
port=3306
socket=/var/lib/mysql/mysql.sock

# 配置文件解释
[root@centos ~]# cat /etc/my.cnf
[mysqld]
# mysql数据目录
datadir=/var/lib/mysql/data
# mysql 根目录
basedir=/var/lib/mysql
# mysql socket文件路径
socket=/var/lib/mysql/mysql.sock
# mysql进程的用户名
user=mysql
# mysql的端口
port=3306
# mysql的字符集
character-set-server=UTF8MB4
symbolic-links=0
sql-mode=STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION
[mysqld_safe]
# mysql日志文件路径
log-error=/var/log/mysqld/mysqld.log
# mysql pid文件路径
pid-file=/var/run/mysqld/mysqld.pid
[client]
port=3306
socket=/var/lib/mysql/mysql.sock

# 更改mysql配置文件的属主和属组为mysql:mysql【之前建立的mysql用户组名和用户名】
chown mysql:mysql /etc/my.cnf

# 建立mysql数据目录/var/lib/mysql/data, 随你喜欢自定义数据目录,【此处使用了默认的mysql数据目录前缀/var/lib/mysql/ 便于理解】,并更改/var/lib/mysql/的属主和属组为mysql:mysql【之前建立的mysql用户组名和用户名】
mkdir -p /var/lib/mysql/data
chown -R mysql:mysql /var/lib/mysql

# 建立mysql日志目录/var/log/mysqld/, 随你喜欢自定义数据目录,建立mysql日志文件/var/log/mysqld/mysqld.log,并更改/var/log/mysqld/的属主和属组为mysql:mysql【之前建立的mysql用户组名和用户名】,并chmod 777 /var/log/mysqld/mysqld.log
mkdir -p /var/log/mysqld/
touch /var/log/mysqld/mysqld.log
chown -R mysql:mysql /var/log/mysqld
chmod 777 /var/log/mysqld/mysqld.log

# 建立mysql pid文件的存放目录 /var/run/mysqld/ 随你喜欢自定义,并更改/var/run/mysqld/的属主和属组为mysql:mysql【之前建立的mysql用户组名和用户名】,并chmod 777 /var/run/mysqld/
mkdir -p /var/run/mysqld/
chown mysql:mysql /var/run/mysqld/
chmod -R 777 /var/run/mysqld/

# 建立mysql 二进制文件的存放目录 /var/lib/mysql/bin 随你喜欢自定义,并拷贝解压mysql安装包后的bin目录下的mysqld_safe文件到/var/lib/mysql/bin,并更改/var/lib/mysql的属主和属组为mysql:mysql【之前建立的mysql用户组名和用户名】
mkdir -p /var/lib/mysql/bin
cp bin/mysqld_safe /var/lib/mysql/bin
chown -R mysql:mysql /var/lib/mysql

# 初始化mysql数据库,--defaults-file=/etc/my.cnf 指定mysql配置文件路径,--user=mysql指定mysql进程的用户是mysql【前面建立的mysql用户名】
bin/mysqld --defaults-file=/etc/my.cnf --initialize --user=mysql
  
# ssl等配置  
bin/mysql_ssl_rsa_setup

# 启动mysql数据库
bin/mysqld_safe --defaults-file=/etc/my.cnf --user=mysql &

# 拷贝mysql启停脚本到/etc/init.d/
cp support-files/mysql.server /etc/init.d/mysql.server

完整命令执行记录

[root@centos mysql]# cd /root/package/mysql/
[root@centos mysql]# groupadd mysql
[root@centos mysql]# useradd -r -g mysql -s /bin/false mysql
[root@centos mysql]# cd /usr/local
[root@centos local]# tar -xzvf /root/package/mysql/mysql-5.7.29-linux-glibc2.12-x86_64.tar.gz
mysql-5.7.29-linux-glibc2.12-x86_64/bin/myisam_ftdump
mysql-5.7.29-linux-glibc2.12-x86_64/bin/myisamchk
mysql-5.7.29-linux-glibc2.12-x86_64/bin/myisamlog
mysql-5.7.29-linux-glibc2.12-x86_64/bin/myisampack
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysql
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysql_client_test_embedded
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysql_config_editor
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysql_embedded
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysql_install_db
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysql_plugin
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysql_secure_installation
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysql_ssl_rsa_setup
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysql_tzinfo_to_sql
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysql_upgrade
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqladmin
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqlbinlog
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqlcheck
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqldump
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqlimport
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqlpump
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqlshow
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqlslap
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqltest_embedded
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqlxtest
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqld-debug
mysql-5.7.29-linux-glibc2.12-x86_64/lib/libmysqld-debug.a
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysqlx_ername.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysqlx_error.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysqlx_version.h
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysql_config
mysql-5.7.29-linux-glibc2.12-x86_64/include/big_endian.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/binary_log_types.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/byte_order_generic.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/byte_order_generic_x86.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/decimal.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/errmsg.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/keycache.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/little_endian.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/m_ctype.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/m_string.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_alloc.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_byteorder.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_command.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_compiler.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_config.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_dbug.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_dir.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_getopt.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_global.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_list.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_sys.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_thread.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_thread_local.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/my_xml.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/client_authentication.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/client_plugin.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/client_plugin.h.pp
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/com_data.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/get_password.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/group_replication_priv.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/innodb_priv.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/mysql_lex_string.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_audit.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_audit.h.pp
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_auth.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_auth.h.pp
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_auth_common.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_ftparser.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_ftparser.h.pp
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_group_replication.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_keyring.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_keyring.h.pp
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_trace.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/plugin_validate_password.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_file.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_idle.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_mdl.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_memory.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_ps.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_socket.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_sp.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_stage.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_statement.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_table.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_thread.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/mysql_transaction.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/psi.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/psi_base.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/psi/psi_memory.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_command.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_locking.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_my_plugin_log.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_my_snprintf.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_mysql_alloc.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_mysql_keyring.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_mysql_password_policy.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_mysql_string.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_parser.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_rpl_transaction_ctx.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_rpl_transaction_write_set.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_rules_table.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_security_context.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_srv_session.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_srv_session_info.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_ssl_wrapper.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_thd_alloc.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_thd_engine_lock.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_thd_wait.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/service_thread_scheduler.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/services.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/services.h.pp
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/thread_pool_priv.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql/thread_type.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql_com.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql_com_server.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql_embed.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql_time.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysql_version.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysqld_ername.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/mysqld_error.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/plugin.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/plugin_audit.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/plugin_ftparser.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/plugin_group_replication.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/plugin_keyring.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/plugin_validate_password.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/sql_common.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/sql_state.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/sslopt-case.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/sslopt-longopts.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/sslopt-vars.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/thr_cond.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/thr_mutex.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/thr_rwlock.h
mysql-5.7.29-linux-glibc2.12-x86_64/include/typelib.h
mysql-5.7.29-linux-glibc2.12-x86_64/lib/libmysqlclient.a
mysql-5.7.29-linux-glibc2.12-x86_64/lib/libmysqlservices.a
mysql-5.7.29-linux-glibc2.12-x86_64/lib/pkgconfig/mysqlclient.pc
mysql-5.7.29-linux-glibc2.12-x86_64/share/aclocal/mysql.m4
mysql-5.7.29-linux-glibc2.12-x86_64/docs/ChangeLog
mysql-5.7.29-linux-glibc2.12-x86_64/docs/INFO_SRC
mysql-5.7.29-linux-glibc2.12-x86_64/lib/libmysqld.a
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/comp_err.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/innochecksum.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/lz4_decompress.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/my_print_defaults.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/myisam_ftdump.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/myisamchk.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/myisamlog.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/myisampack.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysql.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysql.server.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysql_config.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysql_config_editor.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysql_install_db.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysql_plugin.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysql_secure_installation.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysql_ssl_rsa_setup.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysql_tzinfo_to_sql.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysql_upgrade.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqladmin.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqlbinlog.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqlcheck.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqld_multi.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqld_safe.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqldump.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqldumpslow.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqlimport.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqlman.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqlpump.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqlshow.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/mysqlslap.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/perror.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/replace.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/resolve_stack_dump.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/resolveip.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man1/zlib_decompress.1
mysql-5.7.29-linux-glibc2.12-x86_64/man/man8/mysqld.8
mysql-5.7.29-linux-glibc2.12-x86_64/LICENSE
mysql-5.7.29-linux-glibc2.12-x86_64/README
mysql-5.7.29-linux-glibc2.12-x86_64/bin/innochecksum
mysql-5.7.29-linux-glibc2.12-x86_64/bin/lz4_decompress
mysql-5.7.29-linux-glibc2.12-x86_64/bin/my_print_defaults
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqld
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqld_multi
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqld_safe
mysql-5.7.29-linux-glibc2.12-x86_64/bin/mysqldumpslow
mysql-5.7.29-linux-glibc2.12-x86_64/bin/perror
mysql-5.7.29-linux-glibc2.12-x86_64/bin/replace
mysql-5.7.29-linux-glibc2.12-x86_64/bin/resolve_stack_dump
mysql-5.7.29-linux-glibc2.12-x86_64/bin/resolveip
mysql-5.7.29-linux-glibc2.12-x86_64/bin/zlib_decompress
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_euc-jp/char.bin
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_euc-jp/dicrc
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_euc-jp/left-id.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_euc-jp/matrix.bin
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_euc-jp/pos-id.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_euc-jp/rewrite.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_euc-jp/right-id.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_euc-jp/sys.dic
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_euc-jp/unk.dic
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_sjis/char.bin
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_sjis/dicrc
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_sjis/left-id.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_sjis/matrix.bin
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_sjis/pos-id.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_sjis/rewrite.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_sjis/right-id.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_sjis/sys.dic
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_sjis/unk.dic
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_utf-8/char.bin
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_utf-8/dicrc
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_utf-8/left-id.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_utf-8/matrix.bin
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_utf-8/pos-id.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_utf-8/rewrite.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_utf-8/right-id.def
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_utf-8/sys.dic
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/dic/ipadic_utf-8/unk.dic
mysql-5.7.29-linux-glibc2.12-x86_64/lib/mecab/etc/mecabrc
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/adt_null.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/auth_socket.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/authentication_ldap_sasl_client.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/connection_control.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/adt_null.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/auth_socket.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/authentication_ldap_sasl_client.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/connection_control.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/group_replication.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/ha_example.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/innodb_engine.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/keyring_file.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/keyring_udf.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libmemcached.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libpluginmecab.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_framework.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_services.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_services_threaded.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_session_detach.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_session_in_thd.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_session_info.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_2_sessions.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_all_col_types.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_cmds_1.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_commit.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_complex.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_errors.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_lock.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_processlist.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_replication.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_shutdown.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_sqlmode.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_stored_procedures_functions.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_sql_views_triggers.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_x_sessions_deinit.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/libtest_x_sessions_init.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/locking_service.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/mypluglib.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/mysql_no_login.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/mysqlx.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/rewrite_example.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/rewriter.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/semisync_master.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/semisync_slave.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/test_security_context.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/test_udf_services.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/validate_password.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/debug/version_token.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/group_replication.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/ha_example.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/innodb_engine.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/keyring_file.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/keyring_udf.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libmemcached.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libpluginmecab.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_framework.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_services.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_services_threaded.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_session_detach.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_session_in_thd.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_session_info.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_2_sessions.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_all_col_types.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_cmds_1.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_commit.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_complex.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_errors.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_lock.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_processlist.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_replication.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_shutdown.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_sqlmode.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_stored_procedures_functions.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_sql_views_triggers.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_x_sessions_deinit.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/libtest_x_sessions_init.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/locking_service.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/mypluglib.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/mysql_no_login.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/mysqlx.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/rewrite_example.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/rewriter.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/semisync_master.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/semisync_slave.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/test_security_context.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/test_udf_services.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/validate_password.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/plugin/version_token.so
mysql-5.7.29-linux-glibc2.12-x86_64/share/bulgarian/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/Index.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/README
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/armscii8.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/ascii.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/cp1250.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/cp1251.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/cp1256.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/cp1257.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/cp850.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/cp852.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/cp866.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/dec8.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/geostd8.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/greek.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/hebrew.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/hp8.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/keybcs2.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/koi8r.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/koi8u.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/latin1.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/latin2.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/latin5.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/latin7.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/macce.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/macroman.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/charsets/swe7.xml
mysql-5.7.29-linux-glibc2.12-x86_64/share/czech/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/danish/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/dictionary.txt
mysql-5.7.29-linux-glibc2.12-x86_64/share/dutch/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/english/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/errmsg-utf8.txt
mysql-5.7.29-linux-glibc2.12-x86_64/share/estonian/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/fill_help_tables.sql
mysql-5.7.29-linux-glibc2.12-x86_64/share/french/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/german/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/greek/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/hungarian/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/innodb_memcached_config.sql
mysql-5.7.29-linux-glibc2.12-x86_64/share/italian/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/japanese/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/korean/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/mysql_security_commands.sql
mysql-5.7.29-linux-glibc2.12-x86_64/share/mysql_sys_schema.sql
mysql-5.7.29-linux-glibc2.12-x86_64/share/mysql_system_tables.sql
mysql-5.7.29-linux-glibc2.12-x86_64/share/mysql_system_tables_data.sql
mysql-5.7.29-linux-glibc2.12-x86_64/share/mysql_test_data_timezone.sql
mysql-5.7.29-linux-glibc2.12-x86_64/share/norwegian-ny/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/norwegian/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/polish/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/portuguese/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/romanian/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/russian/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/serbian/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/slovak/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/spanish/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/swedish/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/share/ukrainian/errmsg.sys
mysql-5.7.29-linux-glibc2.12-x86_64/support-files/mysql-log-rotate
mysql-5.7.29-linux-glibc2.12-x86_64/support-files/mysqld_multi.server
mysql-5.7.29-linux-glibc2.12-x86_64/lib/libmysqlclient.so
mysql-5.7.29-linux-glibc2.12-x86_64/lib/libmysqlclient.so.20
mysql-5.7.29-linux-glibc2.12-x86_64/lib/libmysqlclient.so.20.3.16
mysql-5.7.29-linux-glibc2.12-x86_64/share/install_rewriter.sql
mysql-5.7.29-linux-glibc2.12-x86_64/share/uninstall_rewriter.sql
mysql-5.7.29-linux-glibc2.12-x86_64/support-files/magic
mysql-5.7.29-linux-glibc2.12-x86_64/support-files/mysql.server
mysql-5.7.29-linux-glibc2.12-x86_64/docs/INFO_BIN
mysql-5.7.29-linux-glibc2.12-x86_64/docs/INFO_SRC
[root@centos local]# ln -s /usr/local//mysql-5.7.29-linux-glibc2.12-x86_64/ mysql
[root@centos local]# cd mysql
[root@centos mysql]# mkdir mysql-files
[root@centos mysql]# chown -R mysql:mysql mysql-files
[root@centos mysql]# chmod -R 750 mysql-files
[root@centos mysql]# cp /etc/my.cnf /etc/my.cnf.bak
[root@centos mysql]# echo -e "[mysqld]\ndatadir=/var/lib/mysql/data\nbasedir=/var/lib/mysql\nsocket=/var/lib/mysql/mysql.sock\nuser=mysql\nport=3306\ncharacter-set-server=UTF8MB4\nsymbolic-links=0\nsql-mode=STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION\n[mysqld_safe]\nlog-error=/var/log/mysqld/mysqld.log\npid-file=/var/run/mysqld/mysqld.pid\n[client]\nport=3306\nsocket=/var/lib/mysql/mysql.sock"  > /etc/my.cnf
[root@centos mysql]# chown mysql:mysql /etc/my.cnf
[root@centos mysql]# 
[root@centos mysql]# mkdir -p /var/lib/mysql/data
[root@centos mysql]# chown -R mysql:mysql /var/lib/mysql
[root@centos mysql]# 
[root@centos mysql]# mkdir -p /var/log/mysqld/
[root@centos mysql]# touch /var/log/mysqld/mysqld.log
[root@centos mysql]# chown -R mysql:mysql /var/log/mysqld
[root@centos mysql]# chmod 777 /var/log/mysqld/mysqld.log
[root@centos mysql]# 
[root@centos mysql]# mkdir -p /var/run/mysqld/
[root@centos mysql]# chown -R mysql:mysql /var/run/mysqld/
[root@centos mysql]# chmod -R 777 /var/run/mysqld/
[root@centos mysql]# 
[root@centos mysql]# mkdir -p /var/lib/mysql/bin
[root@centos mysql]# cp bin/mysqld_safe /var/lib/mysql/bin
[root@centos mysql]# chown -R mysql:mysql /var/lib/mysql
[root@centos mysql]# bin/mysqld --defaults-file=/etc/my.cnf --initialize --user=mysql
2025-08-22T06:34:19.745367Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2025-08-22T06:34:19.745433Z 0 [Warning] 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release.
2025-08-22T06:34:19.745435Z 0 [Warning] 'NO_AUTO_CREATE_USER' sql mode was not set.
2025-08-22T06:34:19.745468Z 0 [ERROR] Can't find error-message file '/var/lib/mysql/share/errmsg.sys'. Check error-message file location and 'lc-messages-dir' configuration directive.
2025-08-22T06:34:20.155023Z 0 [Warning] InnoDB: New log files created, LSN=45790
2025-08-22T06:34:20.216669Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2025-08-22T06:34:20.225606Z 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: 08d4aa91-7f22-11f0-aa0c-000c29d02935.
2025-08-22T06:34:20.226319Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
2025-08-22T06:34:20.524985Z 0 [Warning] CA certificate ca.pem is self signed.
2025-08-22T06:34:20.660025Z 1 [Note] A temporary password is generated for root@localhost: yjG00vwU:yy8
[root@centos mysql]# bin/mysql_ssl_rsa_setup
[root@centos mysql]# bin/mysqld_safe --user=mysql &
[1] 2961
[root@centos mysql]# 2025-08-22T06:34:53.733577Z mysqld_safe Logging to '/var/log/mysqld/mysqld.log'.
2025-08-22T06:34:53.745378Z mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql/data

[root@centos mysql]# cp support-files/mysql.server /etc/init.d/mysql.server
[root@centos mysql]# 

2.3、安装后配置

2.3.1、查看mysql版本

mysql --version

mysql版本是5.7.29

在这里插入图片描述

各部分含义解析
mysql

这是您执行的命令行工具名称,即 MySQL 客户端

Ver 14.14

客户端工具的版本号,这是 MySQL 特定的内部版本标识

Distrib 5.7.29

✅ 最重要的信息:您安装的 MySQL 发行版是 5.7.29 版本

5.7 表示主版本系列,29 是发布号

for linux-glibc2.12 (x86_64)

✅ 平台信息:这个版本是为 Linux 系统编译的

使用 glibc 2.12 库(C 标准库)

架构为 x86_64(64位系统)

using EditLine wrapper

✅ 命令行编辑库:客户端使用的是 EditLine 库

提供命令行编辑功能(如上下箭头历史记录、左右移动光标等)

相比 readline,EditLine 更轻量级

2.3.1、更改mysql密码

链接: https://dev.mysql.com/doc/mysql-installation-excerpt/5.7/en/postinstallation.html

使用安装Mysql数据库时生成的默认密码登录mysql数据库

mysql -uroot -p

没修改默认密码前不能进行数据库sql操作

在这里插入图片描述

修改Mysql默认密码为Mysql@123

mysql>  ALTER USER 'root'@'localhost' IDENTIFIED BY 'Mysql@123' PASSWORD EXPIRE NEVER;
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql>  use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> update user set host = "%" where user = "root";
Query OK, 1 row affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'Mysql@123';
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> 

使用新密码登录mysql数据库

在这里插入图片描述

2.4、停止mysql数据库服务

进入MySQL安装包解压后的目录

cd /usr/local/mysql

执行停止mysql命令

bin/mysqladmin --defaults-file=/etc/my.cnf  -p  shutdown

执行停止MySQL命令后 输入mysql root用户的登录密码

在这里插入图片描述

[root@centos ~]# cat  /var/log/mysqld/mysqld.log
2025-08-22T07:07:45.037414Z 0 [Note] Giving 0 client threads a chance to die gracefully
2025-08-22T07:07:45.037429Z 0 [Note] Shutting down slave threads
2025-08-22T07:07:45.037433Z 0 [Note] Forcefully disconnecting 0 remaining clients
2025-08-22T07:07:45.037442Z 0 [Note] Event Scheduler: Purging the queue. 0 events
2025-08-22T07:07:45.037487Z 0 [Note] Binlog end
2025-08-22T07:07:45.038681Z 0 [Note] Shutting down plugin 'ngram'
2025-08-22T07:07:45.038688Z 0 [Note] Shutting down plugin 'partition'
2025-08-22T07:07:45.038690Z 0 [Note] Shutting down plugin 'BLACKHOLE'
2025-08-22T07:07:45.038692Z 0 [Note] Shutting down plugin 'ARCHIVE'
2025-08-22T07:07:45.038694Z 0 [Note] Shutting down plugin 'INNODB_SYS_VIRTUAL'
2025-08-22T07:07:45.038695Z 0 [Note] Shutting down plugin 'INNODB_SYS_DATAFILES'
2025-08-22T07:07:45.038696Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESPACES'
2025-08-22T07:07:45.038697Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS'
2025-08-22T07:07:45.038698Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN'
2025-08-22T07:07:45.038699Z 0 [Note] Shutting down plugin 'INNODB_SYS_FIELDS'
2025-08-22T07:07:45.038700Z 0 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS'
2025-08-22T07:07:45.038701Z 0 [Note] Shutting down plugin 'INNODB_SYS_INDEXES'
2025-08-22T07:07:45.038702Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS'
2025-08-22T07:07:45.038703Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLES'
2025-08-22T07:07:45.038704Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE'
2025-08-22T07:07:45.038705Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE'
2025-08-22T07:07:45.038706Z 0 [Note] Shutting down plugin 'INNODB_FT_CONFIG'
2025-08-22T07:07:45.038707Z 0 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED'
2025-08-22T07:07:45.038708Z 0 [Note] Shutting down plugin 'INNODB_FT_DELETED'
2025-08-22T07:07:45.038709Z 0 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD'
2025-08-22T07:07:45.038710Z 0 [Note] Shutting down plugin 'INNODB_METRICS'
2025-08-22T07:07:45.038711Z 0 [Note] Shutting down plugin 'INNODB_TEMP_TABLE_INFO'
2025-08-22T07:07:45.038712Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS'
2025-08-22T07:07:45.038713Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU'
2025-08-22T07:07:45.038714Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE'
2025-08-22T07:07:45.038715Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET'
2025-08-22T07:07:45.038716Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX'
2025-08-22T07:07:45.038717Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET'
2025-08-22T07:07:45.038718Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM'
2025-08-22T07:07:45.038719Z 0 [Note] Shutting down plugin 'INNODB_CMP_RESET'
2025-08-22T07:07:45.038720Z 0 [Note] Shutting down plugin 'INNODB_CMP'
2025-08-22T07:07:45.038721Z 0 [Note] Shutting down plugin 'INNODB_LOCK_WAITS'
2025-08-22T07:07:45.038722Z 0 [Note] Shutting down plugin 'INNODB_LOCKS'
2025-08-22T07:07:45.038723Z 0 [Note] Shutting down plugin 'INNODB_TRX'
2025-08-22T07:07:45.038724Z 0 [Note] Shutting down plugin 'InnoDB'
2025-08-22T07:07:45.038782Z 0 [Note] InnoDB: FTS optimize thread exiting.
2025-08-22T07:07:45.038917Z 0 [Note] InnoDB: Starting shutdown...
2025-08-22T07:07:45.139488Z 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/data/ib_buffer_pool
2025-08-22T07:07:45.140958Z 0 [Note] InnoDB: Buffer pool(s) dump completed at 250822 15:07:45
2025-08-22T07:07:46.753016Z 0 [Note] InnoDB: Shutdown completed; log sequence number 2629951
2025-08-22T07:07:46.753858Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
2025-08-22T07:07:46.753867Z 0 [Note] Shutting down plugin 'MRG_MYISAM'
2025-08-22T07:07:46.753870Z 0 [Note] Shutting down plugin 'MEMORY'
2025-08-22T07:07:46.753872Z 0 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA'
2025-08-22T07:07:46.753887Z 0 [Note] Shutting down plugin 'CSV'
2025-08-22T07:07:46.753889Z 0 [Note] Shutting down plugin 'MyISAM'
2025-08-22T07:07:46.753896Z 0 [Note] Shutting down plugin 'sha256_password'
2025-08-22T07:07:46.753897Z 0 [Note] Shutting down plugin 'mysql_native_password'
2025-08-22T07:07:46.753966Z 0 [Note] Shutting down plugin 'binlog'
2025-08-22T07:07:46.754199Z 0 [Note] 
[root@centos ~]# 

2.5、启动mysql数据库服务

# 进入MySQL安装包解压后的目录
cd /usr/local/mysql
# 启动mysql服务
bin/mysqld_safe --defaults-file=/etc/my.cnf --user=mysql &

在这里插入图片描述

[root@centos ~]# cat  /var/log/mysqld/mysqld.log 
2025-08-22T07:10:31.269022Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2025-08-22T07:10:31.269056Z 0 [Warning] 'NO_ZERO_DATE', 'NO_ZERO_IN_DATE' and 'ERROR_FOR_DIVISION_BY_ZERO' sql modes should be used with strict mode. They will be merged with strict mode in a future release.
2025-08-22T07:10:31.269058Z 0 [Warning] 'NO_AUTO_CREATE_USER' sql mode was not set.
2025-08-22T07:10:31.269072Z 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled
2025-08-22T07:10:31.269085Z 0 [Note] /usr/local/mysql/bin/mysqld (mysqld 5.7.29) starting as process 3529 ...
2025-08-22T07:10:31.269103Z 0 [ERROR] Can't find error-message file '/var/lib/mysql/share/errmsg.sys'. Check error-message file location and 'lc-messages-dir' configuration directive.
2025-08-22T07:10:31.271122Z 0 [Note] InnoDB: PUNCH HOLE support available
2025-08-22T07:10:31.271136Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2025-08-22T07:10:31.271138Z 0 [Note] InnoDB: Uses event mutexes
2025-08-22T07:10:31.271139Z 0 [Note] InnoDB: GCC builtin __sync_synchronize() is used for memory barrier
2025-08-22T07:10:31.271141Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2025-08-22T07:10:31.271142Z 0 [Note] InnoDB: Using Linux native AIO
2025-08-22T07:10:31.282071Z 0 [Note] InnoDB: Number of pools: 1
2025-08-22T07:10:31.282166Z 0 [Note] InnoDB: Using CPU crc32 instructions
2025-08-22T07:10:31.282743Z 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M
2025-08-22T07:10:31.285686Z 0 [Note] InnoDB: Completed initialization of buffer pool
2025-08-22T07:10:31.287109Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
2025-08-22T07:10:31.298078Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
2025-08-22T07:10:31.319500Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2025-08-22T07:10:31.319523Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2025-08-22T07:10:31.361227Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
2025-08-22T07:10:31.361519Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
2025-08-22T07:10:31.361523Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
2025-08-22T07:10:31.369024Z 0 [Note] InnoDB: 5.7.29 started; log sequence number 2629951
2025-08-22T07:10:31.369147Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/data/ib_buffer_pool
2025-08-22T07:10:31.369460Z 0 [Note] Plugin 'FEDERATED' is disabled.
2025-08-22T07:10:31.373351Z 0 [Note] InnoDB: Buffer pool(s) load completed at 250822 15:10:31
2025-08-22T07:10:31.386008Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
2025-08-22T07:10:31.386016Z 0 [Note] Skipping generation of SSL certificates as certificate files are present in data directory.
2025-08-22T07:10:31.386344Z 0 [Warning] CA certificate ca.pem is self signed.
2025-08-22T07:10:31.386362Z 0 [Note] Skipping generation of RSA key pair as key files are present in data directory.
2025-08-22T07:10:31.386408Z 0 [Note] Server hostname (bind-address): '*'; port: 3306
2025-08-22T07:10:31.386428Z 0 [Note] IPv6 is available.
2025-08-22T07:10:31.386432Z 0 [Note]   - '::' resolves to '::';
2025-08-22T07:10:31.386440Z 0 [Note] Server socket created on IP: '::'.
2025-08-22T07:10:31.387001Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
2025-08-22T07:10:31.392874Z 0 [Note] Event Scheduler: Loaded 0 events
2025-08-22T07:10:31.393054Z 0 [Note] 
[root@centos ~]# 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值