程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> Mysql安裝(UsingGenericBinaries)

Mysql安裝(UsingGenericBinaries)

編輯:MySQL綜合教程

Mysql安裝(UsingGenericBinaries)


本次 Mysql 為Community 5.6.21 版本,安裝方式為通用Linux安裝方式,即大多數Linux平台都可以采用該方式進行安裝。

一、安裝步驟

1、安裝環境

1)Centos 7.0.1406 X86_64

2、下載 Mysql 、解壓縮、創建軟連接,與官方提供解壓縮路徑有些許。

$ wget http://cdn.mysql.com/Downloads/MySQL-5.6/mysql-5.6.21-linux-glibc2.5-x86_64.tar.gz
$ sudo tar zxvf mysql-5.6.21-linux-glibc2.5-x86_64.tar.gz -C /usr/local/src/
$ sudo ln -s /usr/local/src/mysql-5.6.21-linux-glibc2.5-x86_64/ /usr/local/mysql

3、安裝方式分為兩種。

方式1 參考 Mysql 官方指導建議進行安裝,多用在Mysql學習環境,下列命令來源Mysql官方,原文參見 Installing MySQL on Unix/Linux Using Generic Binaries

shell> groupadd mysql
shell> useradd -r -g mysql mysql
shell> cd /usr/local
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
shell> ln -s full-path-to-mysql-VERSION-OS mysql
shell> cd mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> scripts/mysql_install_db --user=mysql
shell> chown -R root .
shell> chown -R mysql data
shell> bin/mysqld_safe --user=mysql &
# Next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server

方式2 自定義 Mysql 數據保存路徑,多用在部署環境。

1)創建Mysql用戶以及用戶組

$ sudo groupadd mysql
$ sudo useradd -r -g mysql mysql
$ cd /usr/local/src/
$ sudo chown -R mysql:mysql mysql-5.6.21-linux-glibc2.5-x86_64/ #定義mysql用戶以及組
$ ll
總用量 4
drwxr-xr-x. 13 mysql mysql 4096 11月  5 08:10 mysql-5.6.21-linux-glibc2.5-x86_64

2)創建Mysql數據文件保存位置,若使用數據盤則自行掛載。

$ sudo mkdir -p /data/mysql #定義mysql數據文件保存地址

3)初始化 Mysql,可能會出現的問題參見文章底部問題處理方法

$ sudo /usr/local/mysql/scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql/ --datadir=/data/mysql/ #初始化 mysql

4)配置 my.cnf

$ sudo vi /usr/local/mysql/my.cnf 

本示例僅保證可以正常運行,所以配置如下三項即可。

  basedir = /usr/local/mysql
  datadir = /data/mysql
  port = 3306

建立軟連接 my.cnf 到 /etc/ 目錄

$ sudo ln -s /usr/local/mysql/my.cnf /etc/my.cnf

5)啟動 Mysql 服務

$ sudo /usr/local/mysql/support-files/mysql.server start
Starting MySQL. SUCCESS! 

6)登陸 Mysql

$ /usr/local/mysql/bin/mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.21 MySQL Community Server (GPL)

Copyright (c) 2000, 2014, 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> 

二、開機啟動

$ sudo chkconfig --add mysqld

三、環境變量

1)編輯 profile 文件

$ sudo vi /etc/profile

2)添加下列信息到 profile 底部

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

3)立即生效配置文件

$ source /etc/profile

四、Mysql遠程連接

mysql> select user();
+----------------+
| user()         |
+----------------+
| root@localhost |
+----------------+
1 row in set (0.01 sec)

mysql> grant all privileges  on *.* to root@'%' identified by "你的密碼";
Query OK, 0 rows affected (0.00 sec)

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

五、防火牆開啟

Centos 7 默認啟用 firewall 管理端口

1)查看端口開啟情況,若之前沒有配過會顯示 no 說明 3306 端口未開放,反之 yes 說明已開放直接可用 Mysql 客戶端遠程訪問!

$ sudo firewall-cmd --query-port=3306/tcp
no

2)臨時性開啟 3306 端口

$ sudo firewall-cmd --add-port=3306/tcp
success

3)永久性開啟 3306 端口

$ sudo firewall-cmd --permanent --zone=public --add-port=3306/tcp
success
$ sudo firewall-cmd --reload #重新加載配置
success
[john@localhost ~]$ sudo firewall-cmd --zone=public --list-all #查看添加結果
public (default, active)
  interfaces: eth0
  sources: 
  services: dhcpv6-client ssh
  ports: 3306/tcp 22/tcp
  masquerade: no
  forward-ports: 
  icmp-blocks: 
  rich rules: 

六、問題整理

問題1:

$ sudo scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql/ --datadir=/data/mysql/
sudo: unable to execute scripts/mysql_install_db: No such file or directory

解決:解決這個問題純屬巧合,去掉 sudo 提示 Perl 解析器有問題,重新安裝下

$ sudo yum install perl
$ sudo yum install perl-Data-Dumper.x86_64

問題2:

$ sudo scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql/ --datadir=/data/mysql/
Installing MySQL system tables.../usr/local/mysql//bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory

解決:

$ sudo yum install libaio.x86_64

問題3:

$ sudo support-files/mysql.server start
Starting MySQL. ERROR! The server quit without updating PID file (/data/mysql/localhost.localdomain.pid).
解決:這個問題特別實在首次啟動時會提示,簡單說就是找不到 my.cnf 文件,將配置完畢 my.cnf 復制到 /etc/ 或 建立軟連接到 /etc/ 目錄下!
$ sudo cp my.cnf /etc/
這裡我有點疑惑,表面現象 mysql 啟動依賴 /etc/my.cnf 文件,但實際第一次正常啟動 mysql 後可以刪除 /etc/my.cnf 文件,第二次啟動可以正常加載 /usr/local/mysql/my.cnf 文件!

參考文章:

Centos7 安裝Mysql 5.6.19

CentOS 7.0編譯安裝Nginx1.6.0+MySQL5.6.19+PHP5.5.14方法分享

RHEL7中防火牆firewalld的配置(1)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved