mySQL的安裝過程---二進位和源碼安裝

来源:https://www.cnblogs.com/daiyacheng1991/archive/2019/11/01/11779242.html
-Advertisement-
Play Games

安裝 mysql 源碼包安裝 優化基礎源 安裝依賴包 下載(或者上傳): 解壓: 確定安裝路徑存在不存在,不存在則創建 /opt/mysql-5.6.44: 生成: 編譯: 安裝: 創建用戶 拷貝啟動腳本 拷貝配置文件( 存在就覆蓋,不存在則創建 ) 創建socket文件存放目錄 製作軟連接 授權 ...


安裝 mysql


源碼包安裝


優化基礎源

[root@db03 ~]# vim /etc/yum.repos.d/CentOS-Base.repo 

安裝依賴包

[root@db03 ~]# yum install -y cmake ncurses-devel autoconf

下載(或者上傳):

wget https://downloads.mysql.com/archives/get/file/mysql-5.6.44.tar.gz

解壓:

[root@db03 ~]# tar xf mysql-5.6.44.tar.gz 
[root@db03 ~]# cd mysql-5.6.44
[root@db03 ~/mysql-5.6.44]# ll
total 252
drwxr-xr-x  2 7161 31415  4096 Mar 15  2019 BUILD
drwxr-xr-x  2 7161 31415  4096 Mar 15  2019 client
drwxr-xr-x  4 7161 31415  4096 Mar 15  2019 cmake
-rw-r--r--  1 7161 31415 23415 Mar 15  2019 CMakeLists.txt
drwxr-xr-x  3 7161 31415    21 Mar 15  2019 cmd-line-utils
-rw-r--r--  1 7161 31415 19838 Mar 15  2019 config.h.cmake
-rw-r--r--  1 7161 31415 40929 Mar 15  2019 configure.cmake
-rw-r--r--  1 7161 31415 17987 Mar 15  2019 COPYING
drwxr-xr-x  2 7161 31415   312 Mar 15  2019 dbug
drwxr-xr-x  2 7161 31415    80 Mar 15  2019 Docs
-rw-r--r--  1 7161 31415 65958 Mar 15  2019 Doxyfile-perfschema
drwxr-xr-x  4 7161 31415   229 Mar 15  2019 extra
drwxr-xr-x  4 7161 31415  4096 Mar 15  2019 include
-rw-r--r--  1 7161 31415   333 Mar 15  2019 INSTALL
drwxr-xr-x  3 7161 31415   224 Mar 15  2019 libmysql
drwxr-xr-x  3 7161 31415   204 Mar 15  2019 libmysqld
drwxr-xr-x  2 7161 31415   221 Mar 15  2019 libservices
drwxr-xr-x  2 7161 31415  4096 Mar 15  2019 man
drwxr-xr-x 10 7161 31415   305 Mar 15  2019 mysql-test
drwxr-xr-x  2 7161 31415  4096 Mar 15  2019 mysys
drwxr-xr-x  2 7161 31415   300 Mar 15  2019 mysys_ssl
drwxr-xr-x  9 7161 31415   113 Mar 15  2019 packaging
drwxr-xr-x 11 7161 31415   187 Mar 15  2019 plugin
-rw-r--r--  1 7161 31415  2496 Mar 15  2019 README
drwxr-xr-x  2 7161 31415  4096 Mar 15  2019 regex
drwxr-xr-x  2 7161 31415  4096 Mar 15  2019 scripts
drwxr-xr-x  2 7161 31415     6 Mar 15  2019 source_downloads
drwxr-xr-x  4 7161 31415 12288 Mar 15  2019 sql
drwxr-xr-x  5 7161 31415  4096 Mar 15  2019 sql-bench
drwxr-xr-x  2 7161 31415   155 Mar 15  2019 sql-common
drwxr-xr-x 13 7161 31415   169 Mar 15  2019 storage
drwxr-xr-x  2 7161 31415  4096 Mar 15  2019 strings
drwxr-xr-x  5 7161 31415  4096 Mar 15  2019 support-files
drwxr-xr-x  2 7161 31415  4096 Mar 15  2019 tests
drwxr-xr-x  5 7161 31415    70 Mar 15  2019 unittest
-rw-r--r--  1 7161 31415    88 Mar 15  2019 VERSION
drwxr-xr-x  3 7161 31415   298 Mar 15  2019 vio
drwxr-xr-x  2 7161 31415    32 Mar 15  2019 win
drwxr-xr-x 11 7161 31415  4096 Mar 15  2019 zlib

確定安裝路徑存在不存在,不存在則創建 /opt/mysql-5.6.44:

[root@db03 ~/mysql-5.6.44]# ll /opt/ -d
drwxr-xr-x. 2 root root 6 Apr 11  2018 /opt/

生成:

[root@db03 ~/mysql-5.6.44]# “註意必須在此目錄裡面進行生成”
cmake . -DCMAKE_INSTALL_PREFIX=/opt/mysql-5.6.44 \
-DMYSQL_DATADIR=/opt/mysql-5.6.44/data \
-DMYSQL_UNIX_ADDR=/opt/mysql-5.6.44/tmp/mysql.sock \
-DDEFAULT_CHARSET=utf8 \
-DDEFAULT_COLLATION=utf8_general_ci \
-DWITH_EXTRA_CHARSETS=all \
-DWITH_INNOBASE_STORAGE_ENGINE=1 \
-DWITH_FEDERATED_STORAGE_ENGINE=1 \
-DWITH_BLACKHOLE_STORAGE_ENGINE=1 \
-DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 \
-DWITH_ZLIB=bundled \
-DWITH_SSL=bundled \
-DENABLED_LOCAL_INFILE=1 \
-DWITH_EMBEDDED_SERVER=1 \
-DENABLE_DOWNLOADS=1 \
-DWITH_DEBUG=0


#生成完成後檢查
[root@db03 ~/mysql-5.6.44]# echo $?  
等於 0 則沒有問題

編譯:

[root@db03 ~/mysql-5.6.44]# make

安裝:

[root@db03 ~/mysql-5.6.44]# make install

#檢查
[root@db03 ~/mysql-5.6.44]# ll /opt/mysql-5.6.44/
total 44
drwxr-xr-x  2 root root  4096 Oct 31 03:53 bin
-rw-r--r--  1 root root 17987 Mar 15  2019 COPYING
drwxr-xr-x  3 root root    18 Oct 31 03:53 data
drwxr-xr-x  2 root root    55 Oct 31 03:53 docs
drwxr-xr-x  3 root root  4096 Oct 31 03:53 include
drwxr-xr-x  3 root root   291 Oct 31 03:53 lib
drwxr-xr-x  4 root root    30 Oct 31 03:53 man
drwxr-xr-x 10 root root  4096 Oct 31 03:53 mysql-test
-rw-r--r--  1 root root  2496 Mar 15  2019 README
drwxr-xr-x  2 root root    30 Oct 31 03:53 scripts
drwxr-xr-x 28 root root  4096 Oct 31 03:53 share
drwxr-xr-x  4 root root  4096 Oct 31 03:53 sql-bench
drwxr-xr-x  2 root root   136 Oct 31 03:53 support-files

創建用戶

[root@db03 ~/mysql-5.6.44]# useradd mysql -s /sbin/nologin -M
[root@db03 ~/mysql-5.6.44]# id mysql
uid=1000(mysql) gid=1000(mysql) groups=1000(mysql)

拷貝啟動腳本

[root@db03 ~/mysql-5.6.44]# cd /opt/mysql-5.6.44/support-files/
[root@db03 /opt/mysql-5.6.44/support-files]# cp mysql.server /etc/init.d/mysqld
[root@db03 /opt/mysql-5.6.44/support-files]# ll /etc/init.d/mysqld
-rwxr-xr-x 1 root root 10571 Oct 31 03:57 /etc/init.d/mysqld

拷貝配置文件( 存在就覆蓋,不存在則創建 )

[root@db03 /opt/mysql-5.6.44/support-files]# cp my-default.cnf /etc/my.cnf
cp: overwrite ‘/etc/my.cnf’? y

創建socket文件存放目錄

[root@db03 /opt/mysql-5.6.44/support-files]# mkdir /opt/mysql-5.6.44/tmp
[root@db03 /opt/mysql-5.6.44/support-files]# ll /opt/mysql-5.6.44/tmp -d
drwxr-xr-x 2 root root 6 Oct 31 03:59 /opt/mysql-5.6.44/tmp

製作軟連接

[root@db03 /opt/mysql-5.6.44/support-files]# cd /opt/mysql-5.6.44/scripts/
[root@db03 /opt/mysql-5.6.44/scripts]# ll
total 36
-rwxr-xr-x 1 root root 34558 Oct 31 03:31 mysql_install_db
[root@db03 /opt/mysql-5.6.44/scripts]# ln -s /opt/mysql-5.6.44/ /opt/mysql
[root@db03 /opt/mysql-5.6.44/scripts]# ll /opt/mysql
lrwxrwxrwx 1 root root 18 Oct 31 04:01 /opt/mysql -> /opt/mysql-5.6.44/

授權

[root@db03 /opt/mysql-5.6.44/scripts]# chown -R mysql.mysql /opt/*

初始化資料庫

[root@db03 /opt/mysql-5.6.44/scripts]# ./mysql_install_db --user=mysql --basedir=/opt/mysql --datadir=/opt/mysql/data

啟動mysql服務

[root@db03 /opt/mysql-5.6.44/scripts]# /etc/init.d/mysqld start
Starting MySQL. SUCCESS!

添加環境變數

[root@db03 /opt/mysql-5.6.44/scripts]# vim /etc/profile.d/mysql.sh
export PATH="/opt/mysql/bin:$PATH"

[root@db03 /opt/mysql-5.6.44/scripts]# source /etc/profile.d/mysql.sh

埠檢查

[root@db03 /opt/mysql-5.6.44/scripts]# netstat -lntup |grep 3306
tcp6       0      0 :::3306                 :::*                   LISTEN      25084/mysqld

啟動資料庫

[root@db03 /opt/mysql-5.6.44/scripts]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.6.44 Source distribution

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>

更改mysql啟動的許可權並加入systemd管理

vim /usr/lib/systemd/system/mysqld.service
[Unit]
Description=MySQL Server
Documentation=man:mysqld(8)
Documentation=https://dev.mysql.com/doc/refman/en/using-systemd.html
After=network.target
After=syslog.target
[Install]
WantedBy=multi-user.target
[Service]
User=mysql
Group=mysql
ExecStart=/usr/local/mysql/bin/mysqld --defaults-file=/etc/my.cnf
LimitNOFILE = 5000

將mysql 加入systemd管理,並加入開機自啟

[root@db01 ~]#  vim /usr/lib/systemd/system/mysqld.service
[Unit]
Description=MySQL Server
Documentation=man:mysqld(8)
Documentation=https://dev.mysql.com/doc/refman/en/using-systemd.html
After=network.target
After=syslog.target
[Install]
WantedBy=multi-user.target
[Service]
User=mysql
Group=mysql
ExecStart=/opt/mysql/bin/mysqld --defaults-file=/etc/my.cnf  ---------------註意安裝路徑
LimitNOFILE = 5000

[root@db01 ~]# systemctl start mysqld
[root@db01 ~]# systemctl stop mysqld
[root@db01 ~]# systemctl enable mysqld

 


二進位安裝 mysql


下載或上傳軟體包

wget https://downloads.mysql.com/archives/get/file/mysql-5.6.44-linux-glibc2.12-x86_64.tar.gz

解壓

[root@db04 ~]# tar xf mysql-5.6.44-linux-glibc2.12-x86_64.tar.gz 
[root@db04 ~]# ll
total 321404
drwxr-xr-x  13 root root       191 Oct 31 04:31 mysql-5.6.44-linux-glibc2.12-x86_64
-rw-r--r--   1 root root 329105487 Oct 30 10:23 mysql-5.6.44-linux-glibc2.12-x86_64.tar.gz

安裝依賴軟體包

[root@db04 ~]# yum install -y autoconf libaio*

創建 mysql 用戶

[root@db04 ~]# useradd mysql -s /sbin/nologin -M
[root@db04 ~]# id mysql
uid=1000(mysql) gid=1000(mysql) groups=1000(mysql)

將解壓後的軟體包目錄移動到 /opt 目錄下麵並更改文件名

[root@db04 ~]# mv mysql-5.6.44-linux-glibc2.12-x86_64 /opt/mysql-5.6.44
[root@db04 ~]# cd /opt/mysql-5.6.44/
[root@db04 /opt/mysql-5.6.44]# ll
total 40
drwxr-xr-x  2 root root   4096 Oct 31 04:31 bin
-rw-r--r--  1 7161 31415 17987 Mar 15  2019 COPYING
drwxr-xr-x  3 root root     18 Oct 31 04:30 data
drwxr-xr-x  2 root root     55 Oct 31 04:30 docs
drwxr-xr-x  3 root root   4096 Oct 31 04:30 include
drwxr-xr-x  3 root root    316 Oct 31 04:31 lib
drwxr-xr-x  4 root root     30 Oct 31 04:30 man
drwxr-xr-x 10 root root    291 Oct 31 04:30 mysql-test
-rw-r--r--  1 7161 31415  2496 Mar 15  2019 README
drwxr-xr-x  2 root root     30 Oct 31 04:30 scripts
drwxr-xr-x 28 root root   4096 Oct 31 04:31 share
drwxr-xr-x  4 root root   4096 Oct 31 04:31 sql-bench
drwxr-xr-x  2 root root    136 Oct 31 04:30 support-files

製作軟連接

[root@db04 ~]# ln -s /opt/mysql-5.6.44/ /opt/mysql
[root@db04 ~]# ll /opt/mysql
lrwxrwxrwx 1 root root 18 Oct 31 04:37 /opt/mysql -> /opt/mysql-5.6.44/

拷貝啟動腳本

[root@db04 /opt/mysql-5.6.44]# cd /opt/mysql-5.6.44/support-files/
[root@db04 /opt/mysql-5.6.44/support-files]# cp mysql.server /etc/init.d/mysqld
[root@db04 /opt/mysql-5.6.44/support-files]# ll /etc/init.d/mysqld
-rwxr-xr-x 1 root root 10565 Oct 31 04:40 /etc/init.d/mysqld

拷貝配置文件

[root@db04 /opt/mysql-5.6.44/support-files]# cp my-default.cnf /etc/my.cnf
cp: overwrite ‘/etc/my.cnf’? y
[root@db04 /opt/mysql-5.6.44/support-files]# ll /etc/my.cnf
-rw-r--r--. 1 root root 1126 Oct 31 04:41 /etc/my.cnf

初始化資料庫

[root@db04 /opt/mysql-5.6.44/support-files]# cd ../scripts/
[root@db04 /opt/mysql-5.6.44/scripts]# ll
total 36
-rwxr-xr-x 1 7161 31415 34558 Mar 15  2019 mysql_install_db
[root@db04 /opt/mysql-5.6.44/scripts]# ./mysql_install_db --basedir=/opt/mysql --datadir=/opt/mysql/data --user=mysql

授權 mysql 目錄

[root@db04 /opt/mysql-5.6.44/scripts]# chown -R mysql.mysql /opt/*
[root@db04 /opt/mysql-5.6.44/scripts]# ll /opt/
total 0
lrwxrwxrwx  1 mysql mysql  18 Oct 31 04:37 mysql -> /opt/mysql-5.6.44/
drwxr-xr-x 13 mysql mysql 223 Oct 31 04:43 mysql-5.6.44

修改 mysql 啟動腳本和程式

[root@db04 /opt/mysql-5.6.44/scripts]# sed -i 's#/usr/local#/opt#g' /etc/init.d/mysqld /opt/mysql/bin/mysqld_safe

啟動 mysqkl

[root@db04 /opt/mysql-5.6.44/scripts]# /etc/init.d/mysqld start
Starting MySQL.Logging to '/opt/mysql/data/db04.err'.
 SUCCESS!

添加環境變數

[root@db04 /opt/mysql-5.6.44/scripts]# vim /etc/profile.d/mysql.sh
export PATH="/opt/mysql/bin:$PATH"
[root@db04 /opt/mysql-5.6.44/scripts]# source /etc/profile.d/mysql.sh

登錄mysql資料庫

[root@db04 /opt/mysql-5.6.44/scripts]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.44 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> 

將mysql 加入systemd管理,並加入開機自啟

[root@db01 ~]#  vim /usr/lib/systemd/system/mysqld.service
[Unit]
Description=MySQL Server
Documentation=man:mysqld(8)
Documentation=https://dev.mysql.com/doc/refman/en/using-systemd.html
After=network.target
After=syslog.target
[Install]
WantedBy=multi-user.target
[Service]
User=mysql
Group=mysql
ExecStart=/opt/mysql/bin/mysqld --defaults-file=/etc/my.cnf  ---------------註意安裝路徑
LimitNOFILE = 5000

------------------------
[root@db04 ~]# vim /etc/my.cnf

basedir = /opt/mysql        ----------------------更改此處
datadir = /opt/mysql/data   ----------------------更改此處

----------------------------

[root@db01 ~]# systemctl start mysqld
[root@db01 ~]# systemctl stop mysqld
[root@db01 ~]# systemctl enable mysqld

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Ubuntu軟體管理:dpkg和apt Debian軟體包通常為預編譯的二進位格式的擴展名“.deb”,類似rpm文件, dpkg:package manager for Debian,類似於rpm, dpkg是基於Debian的系統的包管理器。可以安裝,刪除和構建軟體包,但無法自動下載和安裝軟體包 ...
  • rpm包管理 程式源代碼 >預處理 >編譯 >彙編 >鏈接 數據處理 轉為彙編代碼 進行彙編 引入庫文件 靜態編譯:.a 動態編譯:.so包的組成: 二進位文件、庫文件、配置文件、幫助文件程式包管理器: debian: deb文件, dpkg包管理器 redhat: rpm文件, rpm包管理器 r ...
  • 升級過程: 原系統:CentOS7.3 [root@my-e450 ~]# uname -r3.10.0-514.el7.x86_64 安裝必需的軟體包: # yum update# yum install -y ncurses-devel make gcc bc bison flex elfuti ...
  • MySQL的主從複製是實現應用的高性能,高可用的基礎。對於資料庫讀操作較密集的應用,通過使資料庫請求負載均衡分配到不同MySQL伺服器,可有效減輕資料庫壓力。當遇到MySQL單點故障中,也能在短時間內實現故障切換。 ...
  • 解法練習 案例1.子查詢練習 欄位 說明film_id 電影idtitle 電影名稱description 電影描述信息category_id 電影分類idname 電影分類名稱last_update 電影分類最後更新時間film_id 電影idcategory_id 電影分類idlast_upda ...
  • 一.客戶端與伺服器模型 1.mysql是一個典型的C/S服務結構 1.1 mysql自帶的客戶端程式(/application/mysql/bin) ​ mysql ​ mysqladmin ​ mysqldump 1.2 mysqld一個二進位程式,後臺的守護進程 單進程 多線程 2.應用程連接M ...
  • 問題描述: 有時候伺服器操作導入數據.sql,或者 當需求不可以直接備份整庫還原時,往往通過導出資料庫腳本的方式來部署-還原資料庫表 但是當資料庫導出腳本很大,用Microsoft SQL Server Management Studio執行腳本時,往往會遇到“記憶體不足”的提示。 解決辦法: 用微軟 ...
  • 誤刪除用戶解決辦法 刪除用戶 刪除用戶 重啟mysql服務並登錄 恢復用戶 當登錄不上去首先停掉正在運行的資料庫 跳過授權表,跳過網路啟動資料庫 連接資料庫 刷新授權表 創建 root 超級用戶並退出 停止mysql服務 啟動資料庫服務 連接資料庫 查看創建的用戶的許可權 註意:以上只能在存在數據的時 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...