KVM MYSQL 5.7单机FOR OEL7.5安装文档的方法是什么

发布时间:2021-11-08 11:16:59 作者:iii
来源:亿速云 阅读:136

这篇文章主要介绍“KVM MYSQL 5.7单机FOR  OEL7.5安装文档的方法是什么”,在日常操作中,相信很多人在KVM MYSQL 5.7单机FOR  OEL7.5安装文档的方法是什么问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”KVM MYSQL 5.7单机FOR  OEL7.5安装文档的方法是什么”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

1. KVM MYSQL 5.7 单机 FOR  OEL7.5 通常安装文档

2. 安装流程

2.1. 确定平台版本和机器位数。

确定当前MYSQL版本对应各种操作系统 平台是否支持。

2.2. 下载对应版本

2.2.1. 下载二进制安装包

    官方网站
     http://dev.mysql.com/downloads/mirrors.html .
    进入后可以选择对应的版本

NOTE:
tar.gz tar.xz 为二进制安装。
RPM 为rpm 安装包。
deb 为 deband linux 安装包.
PKG 为mac 文件安装包。

2.2.2. 下载yum 源配置包(社区版)

https://dev.mysql.com/downloads/repo/yum/

2.2.3. 下载源码编译

    源码现目前在GIT 上托管。

2.3. 验证下载后文件是否正确

shell> md5.exe mysql-installer-community-8.0.13.msi
aaab65abbec64d5e907dcd41b8699945  mysql-installer-community-8.0.13.msi
shell> cd /usr/local
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf -

3.2.3. 创建新的链接文件到真实目录

shell> ln -s full-path-to-mysql-VERSION-OS mysql

3.2.4. 设置环境变量

shell> export PATH=$PATH:/usr/local/mysql/bin

3.2.5. 配置启动目录

shell> cd mysql
shell> mkdir mysql-files
shell> chown mysql:mysql mysql-files
shell> chmod 750 mysql-files

3.2.6. 初始化数据库

shell> bin/mysqld --initialize --user=mysql
3.2.6.1. 初始化数据库两种方式
shell> bin/mysqld --initialize --user=mysql
shell> bin/mysqld --initialize-insecure --user=mysql

NOTE:

两种初始化方式第一种必须强制使用密码登录
第二种方式可以使用跳过密码
shell> mysql -u root --skip-password
然后更改对应密码
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'new_password';
在mysql 8.0 默认加密的密码已经改了。现在默认使用caching_sha2_password 加密方式。
如果还需使用默认的mysql_native_password 加密方式的话使用默认 模式。
初始化的时候,默认路径为/usr/local/mysql

3.2.6.2. 更改默认路径

3.2.7. 创建安全连接

3.2.7.1. 说明
FormatDescription
—datadirPath to data directory
—helpDisplay help message and exit
—suffixSuffix for X509 certificate Common Name attribute
—uidName of effective user to use for file permissions
—verboseVerbose mode
—versionDisplay version information and exit
3.2.7.2. 默认目录
shell> bin/mysql_ssl_rsa_setup
3.2.7.3. 指定目录
bin/mysql_ssl_rsa_setup --datadir=/app/mysql/mysql-files/

———————————到此安装完毕—————————————————-

4. YUM 源安装

a.    去下载MySQL 的repo 文件: http://dev.mysql.com/downloads/repo/yum/

wget https://dev.mysql.com/get/mysql80-community-release-el7-1.noarch.rpm

b.    选择对应操作系统版本的
c.    本地安装

shell> sudo yum localinstall platform-and-version-specific-package-name.rpm

5. 使用RPM 包安装

说明:

由于企业版只提供二进制和RPM 包方式。。不提供YUM 安装方式。
以下是各个RPM 包的含义:

Package NameSummary
mysql-commercial-backupMySQL Enterprise Backup (added in 8.0.11)
mysql-commercial-clientMySQL client applications and tools
mysql-commercial-commonCommon files for server and client libraries
mysql-commercial-develDevelopment header files and libraries for MySQL database client applications
mysql-commercial-embedded-compatMySQL server as an embedded library with compatibility for applications using version 18 of the library
mysql-commercial-libsShared libraries for MySQL database client applications
mysql-commercial-libs-compatShared compatibility libraries for previous MySQL installations; the version of the libraries matches the version of the libraries installed by default by the distribution you are using
mysql-commercial-minimal-debuginfoDebug information for package mysql-commercial-server-minimal; useful when developing applications that use this package or when debugging this package
mysql-commercial-serverDatabase server and related tools
mysql-commercial-server-minimalMinimal installation of the database server and related tools (added in 8.0.0)
mysql-commercial-testTest suite for the MySQL server
  1. 下载对应版本的RPM 包进行解压

    [root
    
    @mysql3
    
     ~]# unzip V979091-01.zip 
    Archive:  V979091-01.zip
    extracting: mysql-commercial-libs-8.0.12-1.1.el7.x86_64.rpm  
    extracting: mysql-commercial-embedded-compat-8.0.12-1.1.el7.x86_64.rpm  
    extracting: mysql-commercial-test-8.0.12-1.1.el7.x86_64.rpm  
    extracting: mysql-commercial-server-8.0.12-1.1.el7.x86_64.rpm  
    extracting: mysql-commercial-server-minimal-8.0.12-1.1.el7.x86_64.rpm  
    extracting: mysql-commercial-minimal-debuginfo-8.0.12-1.1.el7.x86_64.rpm  
    extracting: mysql-commercial-devel-8.0.12-1.1.el7.x86_64.rpm  
    extracting: mysql-commercial-client-8.0.12-1.1.el7.x86_64.rpm  
    extracting: mysql-commercial-libs-compat-8.0.12-1.1.el7.x86_64.rpm  
    extracting: mysql-commercial-common-8.0.12-1.1.el7.x86_64.rpm  
    extracting: mysql-commercial-backup-8.0.12-1.1.el7.x86_64.rpm  
    extracting: README.txt
  2. 批量自动安装:自动解决依赖包。使用此命令时注意不要和server_mini 混用。

    yum install mysql-commercial-*
Files or ResourcesLocation
Client programs and scripts/usr/bin
mysqld server/usr/sbin
Configuration file/etc/my.cnf
Data directory/var/lib/mysql
Error log fileFor RHEL, Oracle Linux, CentOS or Fedora platforms: /var/log/mysqld.logFor SLES: /var/log/mysql/mysqld.log
Value of secure_file_priv/var/lib/mysql-files
System V init scriptFor RHEL, Oracle Linux, CentOS or Fedora platforms: /etc/init.d/mysqldFor SLES: /etc/init.d/mysql
Systemd serviceFor RHEL, Oracle Linux, CentOS or Fedora platforms: mysqldFor SLES: mysql
Pid file/var/run/mysql/mysqld.pid
Socket/var/lib/mysql/mysql.sock
Keyring directory/var/lib/mysql-keyring
Unix manual pages/usr/share/man
Include (header) files/usr/include/mysql
Libraries/usr/lib/mysql
Miscellaneous support files (for example, error messages, and character set files)/usr/share/mysql

5.1. 安装相关组件

列出开启yum 中所有相关的安装包。,包括未enable 中的源
例如主机上要连接低版本客户端。则需要安装低版本客户端如下:

rpm --oldpackage -ivh mysql-community-libs-5.5.50-2.el6.x86_64.rpm

安装其他软件:到官网下载对应版本安装。

6. 启动和关闭

6.1. 使用二进制安装

 shell> bin/mysqld_safe --user=mysql &
# 6. Next command is optional

6.1.1. 拷贝自启动文件

shell> cp /app/mysql/support-files/mysql.server /etc/init.d/

6.1.2. 编辑my.cnf 文件

basedir=/app/mysql
datadir=/app/mysql/mysql-files

6.1.3. 重载启动项目

systemctl  daemon-reload

6.1.4. 查看是否启动MySQL

systemctl  status mysql

6.1.5. 开机自启动

NOTE:
由于使用二进制安装,则需要配置chkconfig 。RPM 包不需要

chkconfig --add mysql.server
chkconfig mysql.server on

6.2. 使用yum 源安装

6.2.1. 启动MySQL

service mysqld start
systemctl  start mysqld

6.2.2. 查看是否启动MySQL

systemctl  status mysqld

6.2.3. 开机自启动

systemctl  enable mysqld
systemctl disable mysqld

6.3. 使用RPM 包安装

6.3.1. 启动MySQL

service mysqld start
systemctl  start mysqld

6.3.2. 查看是否启动MySQL

systemctl  status mysqld

6.3.3. 开机自启动

systemctl  enable mysqld
systemctl disable mysqld

7. MySQL 启动后诊断

7.1. 查看日志

tail host_name.err

7.2. 选择驱动


默认为InnoDB

7.3. 确认数据文件位置是否合适

7.4. 查看所有配置参数和所有的环境变量

mysqld --basedir=/app/mysql --verbose –help | more

7.5. 配置文件环境变量

mysqladmin variables -u root -p 
mysqladmin -h host_name variables - u root -p

8. 测试MySQL

NOTE:

以上命令成功执行后则mysql 数据正常。

9. 账户安全

9.1. yum 源安装

mysql> SHOW VARIABLES LIKE 'validate_password%';
+--------------------------------------+--------+
| Variable_name                        | Value  |
+--------------------------------------+--------+
| validate_password.check_user_name    | ON     |
| validate_password.dictionary_file    |        |
| validate_password.length             | 8      |
| validate_password.mixed_case_count   | 1      |
| validate_password.number_count       | 1      |
| validate_password.policy             | MEDIUM |
| validate_password.special_char_count | 1      |
+--------------------------------------+--------+
7 rows in set (0.01 sec)
set GLOBAL validate_password.policy=0;
设置密码长度
set GLOBAL validate_password.length=3;
ALTER USER 'root'@'localhost' IDENTIFIED BY '1234';

9.2. 二进制安装

mysql -u root -p
ALTER USER 'root'@'localhost' IDENTIFIED BY 'new_password';
mysql> SHOW VARIABLES LIKE 'validate_password%';
+--------------------------------------+--------+
| Variable_name                        | Value  |
+--------------------------------------+--------+
| validate_password.check_user_name    | ON     |
| validate_password.dictionary_file    |        |
| validate_password.length             | 8      |
| validate_password.mixed_case_count   | 1      |
| validate_password.number_count       | 1      |
| validate_password.policy             | MEDIUM |
| validate_password.special_char_count | 1      |
+--------------------------------------+--------+
7 rows in set (0.01 sec)
mysql> set GLOBAL validate_password.policy=0;
mysql> set GLOBAL validate_password.length=3;
ALTER USER 'root'@'localhost' IDENTIFIED BY '1234';

10. 附录

10.1. 忘记root 密码

到此,关于“KVM MYSQL 5.7单机FOR  OEL7.5安装文档的方法是什么”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!

推荐阅读:
  1. KVM虚拟化之安装KVM虚拟机(一)
  2. centos7上部署oVirt平台管理kvm

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

mysql

上一篇:Shell脚本正则表达式中awk、sort、uniq怎么用

下一篇:如何实现KMS自动激活windows、office脚本

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》