CentOS7
8.0.28
二進位制Generic
/app/database
/data/3306
/binlog/3306
MySQL Community Server 社群版官網下載連結
MySQL :: Download MySQL Community Server (Archived Versions)
rpm
包安裝:安裝簡單方便,但僅限rpm
系列Linux系統,可客製化化不高,生產不推薦二進位制版本會有三個安裝包下載
解壓後目錄如下
drwxr-xr-x. 2 7161 31415 4096 Dec 18 2021 bin # mysql所有可執行程式命令,登陸、備份等等
drwxr-xr-x. 2 7161 31415 55 Dec 18 2021 docs # mysql檔案
drwxr-xr-x. 3 7161 31415 4096 Dec 18 2021 include # 依賴庫
drwxr-xr-x. 6 7161 31415 201 Dec 18 2021 lib # 函數庫
-rw-r--r--. 1 7161 31415 276595 Dec 18 2021 LICENSE
drwxr-xr-x. 4 7161 31415 30 Dec 18 2021 man # 幫助檔案
-rw-r--r--. 1 7161 31415 666 Dec 18 2021 README
drwxr-xr-x. 28 7161 31415 4096 Dec 18 2021 share
drwxr-xr-x. 2 7161 31415 77 Dec 18 2021 support-files # 指令碼存放目錄
# 檢視rpm是否有安裝
rpm -qa | grep -i mysql # -i 忽略大小寫
# 或者
yum list installed | grep mysql
# 檢視mysql服務是否在執行
systemctl status mysqld.service
# 解除安裝mysql
yum remove mysql-xxx mysql-xxx mysql-xxx mysqk-xxxx
# 刪除mysql相關檔案 慎用!!
find / -name mysql | xargs rm -rf
mv /etc/my.cnd /etc/my.cnd_backup
在安裝之前最好檢查一下,如果有務必刪除乾淨,包括紀錄檔檔案和資料檔案。
useradd -s /sbin/nologin mysql
id mysql
注意:生產環境下軟體目錄、資料目錄、紀錄檔目錄不要單獨存放在一個磁碟下!
mkdir -p /app/database # 軟體目錄
mkdir -p /data/3306 # 資料目錄
mkdir -p /binlog/3306 # 紀錄檔目錄
設定目錄許可權給mysql
使用者
chown -R mysql:mysql /app /data /binlog
注意:千萬不要下載到32位元的包,一走眼就很容易搞混!一定是glibc2.12-x86_64
wget https://downloads.mysql.com/archives/get/p/23/file/mysql-8.0.28-linux-glibc2.12-x86_64.tar.xz
tar -xf mysql-8.0.28-linux-glibc2.12-x86_64.tar.xz
3.4.1 設定環境變數
# 做軟連線,檔名太長不方便後續設定。不推薦修改檔名,修改了不能很快的知道mysql版本
ln -s mysql-8.0.28-linux-glibc2.12-x86_64/ mysql
# 編輯當前使用者環境變數檔案
vim ~/.bash_profile
# 新增修改如下內容
MYSQL_HONE=/app/database/mysql
PATH=$PATH:$HOME/bin:$MYSQL_HONE/bin
export PATH
# 讓環境變數生效
source ~/.bash_profile
# 驗證
# mysql -V
mysql Ver 8.0.28 for Linux on x86_64 (MySQL Community Server - GPL)
3.4.2 初始化系統表
系統表是mysql執行必備的表,不可缺失!本次初始化選擇手動設定密碼方式
mysqld --initialize-insecure --user=mysql --basedir=/app/database/mysql --datadir=/data/3306
# 引數說明
--initialize-insecure: reate the default database and exit. Create a super userwith empty password.
--initialize:Create the default database and exit. Create a super userwith a random expired password and store it into the log.
# 以上這兩引數任選其一,區分就是一個自動生成密碼,一個沒有密碼需要手動設定
--user=name: Run mysqld daemon as user.
--basedir=name: Path to installation directory. All paths are usuallyresolved relative to this
--datadir=name: Path to the database root directory
注意:初始化資料目錄一定是空目錄!否則初始化失敗
3.4.3 設定MySQL組態檔
組態檔路徑:/etc/my.cnf
以下組態檔僅供參考!根據實際機器設定來修改具體設定。
[mysqld]
user=mysql
basedir=/app/database/mysql
datadir=/data/3306
server_id=6
socket=/tmp/mysql.sock
bind-address = 0.0.0.0
# connect
max_connections = 1000
max_connect_errors = 200
# charset
character_set_server = utf8mb4
# InnoDB Settings
innodb_buffer_pool_size = 2G
innodb_read_io_threads = 15
innodb_write_io_threads = 15
# innodb_flush_log_at_trx_commit = 0
innodb_buffer_pool_instances = 8
innodb_log_file_size = 1G
innodb_log_buffer_size = 64M
# innodb_flush_method = O_DIRECT
innodb_page_cleaners = 16
# session memory settings
read_buffer_size = 32M
read_rnd_buffer_size = 32M
sort_buffer_size = 64M
tmp_table_size = 64M
join_buffer_size = 128M
thread_cache_size = 64
# slow log
slow_query_log = 1
slow_query_log_file = slow.log
long_query_time = 10
min_examined_row_limit = 100
log-queries-not-using-indexes
log_throttle_queries_not_using_indexes = 10
log_timestamps = system
# log settings
log_error = error.log
# client settings
[mysql]
prompt = (\\u@\\h) [\\d]>\\_
socket=/tmp/mysql.sock
no-auto-rehash
3.4.3 準備MySQL啟動指令碼
啟動指令碼存放在support-files
目錄下的mysql.server
,將啟動指令碼拷貝到/etc/init.d
方便執行管理
CentOS7有兩種啟動方式,一個是init.d
,一個是systemctl
,這裡只用第一種,第二種方式具體參考百度或者官網。
cp mysql.server /etc/init.d/mysqld
3.4.5 啟動MySQL
如果沒有意外的話,可以啟動成功。有一種情況會啟動失敗,啟動指令碼中設定的啟動路徑不在環境變數裡,此時需要設定軟連線到指令碼中對應的路徑。
/etc/init.d/mysqld start
3.4.6 驗證
# /etc/init.d/mysqld status
SUCCESS! MySQL running (11794)
# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1397
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.
(root@localhost) [(none)]>
3.5.1 設定管理員密碼
mysqladmin -uroot password "WeiMin@123"
3.5.2 CentOS7設定開機自啟動
設定開機自啟動的方式有很多,這裡用最簡單的一種。
注意:
/etc/init.d
目錄下!!# 設定開機自啟動
chkconfig --add mysqld
# 檢視mysqld是否在列表中
chkconfig --list
mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off
netconsole 0:off 1:off 2:off 3:off 4:off 5:off 6:off
network 0:off 1:off 2:on 3:on 4:on 5:on 6:off
3.5.3 CentOS7關閉防火牆、關閉開機自啟動防火牆
iptables -F
systemctl disable firewalld.service
3.5.4 關閉selinux
、修改selinux
組態檔永久關閉
setenforce 0
# vim /etc/selinux/config
SELINUX=disabled
—skip-grant-tables
:跳過授權表,關閉使用者認證—skip-networking
:跳過遠端登入,只能本地登陸# 1. 關閉資料庫
/etc/init.d/mysqld stop
# 2. 啟動資料庫到維護模式,並放到後臺
mysqld_safe --skip-networking --skip-grant-tables &
# 3. 登陸mysql並修改密碼
flush privileges;
alter user root@'localhost' identified by 'Admin@123';
# 4. 關閉資料庫,啟動驗證
/etc/init.d/mysqld stop
mysql -uroot -pAdmin@123
啟動有兩種方式,不建議使用命令執行!!
systemctl
指令碼本質上啟動指令碼執行的是mysqld_safe --datadir=/data/3306 --pid-file=/data/3306/mysql.pid
這條命令,所以手動執行這條命令也可以啟動mysql
# ps -ef | grep mysqld
root 6067 1 0 03:18 pts/0 00:00:00 /bin/sh /app/database/mysql/bin/mysqld_safe --datadir=/data/3306 --pid-file=/data/3306/mysql.pid
mysql 6519 6067 1 03:18 pts/0 00:00:01 /app/database/mysql/bin/mysqld --basedir=/app/database/mysql --datadir=/data/3306 --plugin-dir=/app/database/mysql/lib/plugin --user=mysql --log-error=error.log --pid-file=/data/3306/mysql.pid --socket=/tmp/mysql.sock
有三種方式正常關閉資料庫,不建議使用kill
來強行關閉資料庫(被強姦的感覺)
shutdown
命令關閉/etc/init.d/mysqld stop
systemctl
關閉,前提是設定了指令碼,命令和就是服務的關閉命令,沒有特別的地方。