我的编程空间,编程开发者的网络收藏夹
学习永远不晚

【MySQL】数据库部署--MySQL 5.7(Yum Repository)

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

【MySQL】数据库部署--MySQL 5.7(Yum Repository)

[root@wallet01 ~]# lsb_release -a
LSB Version:    :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch
Distributor ID: CentOS
Description:    CentOS release 6.5 (Final)
Release:        6.5
Codename:       Final

[root@wallet01 ~]# cat >> /etc/hosts <<EOF
192.168.40.34   wallet01
EOF

[root@wallet01 ~]# useradd mysql
[root@wallet01 ~]# id mysql
uid=500(mysql) gid=500(mysql) groups=500(mysql)

[root@wallet01 ~]# cat >> /etc/security/limits.conf <<EOF
mysql            soft    nproc          4096
mysql            hard    nproc          65535
mysql            soft    nofile         4096
mysql            hard    nofile         65535
EOF

使用官方Yum Repository安装MySQL 5.7
[root@wallet01 ~]# yum install -y libaio

[root@wallet01 ~]# rpm -ivh mysql80-community-release-el6-3.noarch.rpm

[root@wallet01 ~]# yum-config-manager --disable mysql80-community

[root@wallet01 ~]# yum-config-manager --enable mysql57-community

[root@wallet01 ~]# yum repolist all | grep mysql 

[root@wallet01 ~]# yum install -y mysql-community-server

[root@wallet01 ~]# vim /etc/my.cnf
[mysqld]
user = mysql  
port = 3306 
datadir = /var/lib/mysql
socket = /var/lib/mysql/mysql.sock
character-set-server = utf8
open-files-limit = 65535

validate_password=off

sql_mode = STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION
secure_file_priv = /var/lib/mysql

transaction_isolation = READ-COMMITTED

innodb_buffer_pool_size = 4G
innodb_buffer_pool_instances = 4

innodb_log_file_size = 256M
innodb_log_files_in_group = 3
innodb_log_buffer_size = 16M

innodb_undo_logs= 128
innodb_undo_tablespaces = 3
innodb_data_file_path = ibdata1:2048M:autoextend

tmp_table_size = 256M
max_heap_table_size = 256M

key_buffer_size = 32M
max_allowed_packet = 32M

lower_case_table_names=1

slow_query_log = 1
long_query_time = 2

log-error = /var/lib/mysql/error.log
log_timestamps = SYSTEM

wait_timeout=43200  
interactive_timeout=43200

max_connections = 500
max_connect_errors = 10000

server_id = 3030

log_bin = mysql-bin
binlog_format = row
binlog_cache_size = 8M
max_binlog_cache_size = 4G
max_binlog_size = 64M
expire_logs_days = 7

relay_log = relay-bin
relay_log_recovery = 1
master_info_repository = table
relay_log_info_repository = table

[mysql]
socket = /var/lib/mysql/mysql.sock

[root@wallet01 ~]# mysqld --initialize --user=mysql
......

2019-08-19T02:42:34.290832Z 1 [Note] A temporary password is generated for root@localhost: I9ro5DtK:5sN

[root@wallet01 ~]# service mysqld start
Logging to '/var/lib/mysql/wallet01.err'.
Starting mysqld:                                           [  OK  ]

[root@wallet01 ~]# service mysqld status
mysqld (pid  12093) is running...

[root@wallet01 ~]# netstat -tunlp | grep mysqld
tcp        0      0 :::3306        :::*        LISTEN      12093/mysqld 

[root@wallet01 ~]# mysql_secure_installation

##修改root密码

Enter password for user root: 

The existing password for the user account root has expired. Please set a new password.

New password: 

Re-enter new password: 

Estimated strength of the password: 100 
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

##删除匿名用户
Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
Success.

Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

##禁止root远程登录
Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
Success.

By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.

##删除测试库
Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
 - Dropping test database...
Success.

 - Removing privileges on test database...
Success.

Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

##刷新权限
Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Success.

[root@wallet01 ~]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.7.27 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

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> select version();
+-----------+
| version() |
+-----------+
| 5.7.27    |
+-----------+
1 row in set (0.00 sec)

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

【MySQL】数据库部署--MySQL 5.7(Yum Repository)

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Ubuntu Mysql 5.7数据库安装

下载地址:https://downloads.mysql.com/archives/community/ 二、解压安装 tar xvf mysql-server_5.7.28-1ubuntu18.04_amd64.deb-bundle.tar dpkg -i
Ubuntu Mysql 5.7数据库安装
2015-09-23

如何使用Docker部署mysql数据库

今天小编给大家分享一下如何使用Docker部署mysql数据库的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。一、检查系统版本
2023-07-05

mysql数据库服务器如何部署

MySQL 数据库服务器的部署可以分为以下几个步骤:1、下载 MySQL从 MySQL 的官方网站下载 MySQL 数据库服务器的安装包,根据操作系统的不同选择对应的版本。2、安装 MySQL运行下载的安装包,按照提示完成 MySQL 数据
2023-03-20

postgres timesaledb MySQL数据库容器化部署

原文:https://www.cnblogs.com/songyuejie/p/13813646.html
postgres timesaledb MySQL数据库容器化部署
2014-09-14

怎么使用docker-compose部署mysql数据库

要使用docker-compose部署MySQL数据库,需要按照以下步骤操作:首先,确保你已经安装了Docker和docker-compose。如果没有,请先安装它们。创建一个新的文件夹,用于存放你的docker-compose.yml文件
怎么使用docker-compose部署mysql数据库
2024-04-09

如何快速部署MySQL数据库服务器

这篇文章主要讲解了“如何快速部署MySQL数据库服务器”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“如何快速部署MySQL数据库服务器”吧!MySQL是一个关系型数据库管理系统,由瑞典MyS
2023-06-27

MySQL INSERT锁与数据库应用部署策略

在MySQL中,INSERT操作会涉及到行级锁和表级锁。当一个INSERT操作在执行时,会自动给相关的行或表加锁,以确保数据的一致性和完整性。对于数据库的应用部署策略,可以考虑以下几点来避免INSERT锁带来的影响:合理设计数据库表结构:
MySQL INSERT锁与数据库应用部署策略
2024-08-13

编程热搜

目录