多個(gè)mysql5.7.19(tar.gz)在linux下的安裝圖文詳細(xì)教程詳細(xì)說明
發(fā)表時(shí)間:2023-07-25 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這篇文章主要為大家詳細(xì)介紹了linux下多個(gè)mysql5.7.19tar.gz安裝教程,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下初級(jí)第一次在Linux下安裝MySQL-5.7.19版本教程請(qǐng)...
這篇文章主要為大家詳細(xì)介紹了linux下多個(gè)mysql5.7.19tar.gz安裝教程,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
初級(jí)第一次在Linux下安裝MySQL-5.7.19版本教程請(qǐng)看上一篇,如果已經(jīng)會(huì)安裝了,那么請(qǐng)看這篇linux下安裝多個(gè)mysql-5.7.19
環(huán)境:centos 6.5
1-下載
2-跳過登陸
3-1安裝多個(gè)數(shù)據(jù)庫需要配置自己的my.cnf,如果只安裝一個(gè),系統(tǒng)沒有安裝過直接這個(gè)命令就可以
shell> groupadd mysql
shell> useradd -r -g mysql -s /bin/false 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> mkdir mysql-files
查看下有沒有data目錄如果沒有的話增加個(gè)命令(mkdir data)
shell> chmod 750 mysql-files
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> bin/mysql_install_db --user=mysql # MySQL 5.7.5
shell> bin/mysqld --initialize --user=mysql # MySQL 5.7.6 and up
shell> bin/mysql_ssl_rsa_setup # MySQL 5.7.6 and up
shell> chown -R root .
shell> chown -R mysql data mysql-files
shell> bin/mysqld_safe --user=mysql &
# Next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server
安裝好了就可以直接跳到登陸 步驟5
下面說安裝多個(gè)mysql情況:
3-2安裝多個(gè)數(shù)據(jù)庫需要安照如下命令:
1-增加配置文件 my.cnf (在mysql目錄下命令touch my.cnf):
下面配置文件可以直接使用粘貼復(fù)制進(jìn)去
然后創(chuàng)建log文件 /xcxyz/log/mysql/error.log
[mysqld]
basedir= /usr/local/mysql-5.7.19-3307
datadir = /usr/local/mysql-5.7.19-3307/data
port = 3307
character-set-server=utf8
server_id = 11
#該socket最好指定,不指定的話默認(rèn)的話 是使用的默認(rèn)的socket文件 而且登陸數(shù)據(jù)庫的時(shí)候會(huì)有我下面的問題
socket = /tmp/mysql3307.sock
log-error = /xcxyz/log/mysql/error.log
pid-file = /usr/local/mysql-5.7.19-3307/data/mysql-5.7.19-3307.pid
2-執(zhí)行如下命令
2-1增加用戶 組 我的用戶和組都使用的是mysqlosf這個(gè)隨意
shell> groupadd mysql
shell> useradd -r -g mysql -s /bin/false mysql
shell> cd /usr/local
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
2-2建立軟連接:
shell> ln -s full-path-to-mysql-VERSION-OS mysql
shell> cd mysql
shell> mkdir mysql-files
查看下有沒有data目錄如果沒有的話增加個(gè)命令(mkdir data)
2-3授權(quán)當(dāng)前目錄:
shell> chmod 750 mysql-files
shell> chown -R mysqlosf .
shell> chgrp -R mysqlosf .
2-4編譯
bin/mysqld --defaults-file=/usr/local/full-path-to-mysql-VERSION-OS/my.cnf --initialize --user=mysqlosf
查看日志輸出:vi /xcxyz/log/mysql/error.log
2017-07-24T03:13:47.933684Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2017-07-24T03:13:49.979892Z 0 [Warning] InnoDB: New log files created, LSN=45790
2017-07-24T03:13:50.262941Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
2017-07-24T03:13:50.330756Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 1d702294-701e-11e7-98a1-00163e30bbf6.
2017-07-24T03:13:50.340474Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.
2017-07-24T03:13:50.344419Z 1 [Note] A temporary password is generated for root@localhost: jZpgHhigx5>i(特別重要一會(huì)初始化密碼)
2-5建立密鑰
shell> bin/mysql_ssl_rsa_setup --defaults-file=/usr/local/mysql-5.7.19-3307/my.cnf
2-6重新授權(quán)分配
shell> chown -R root .
shell> chown -R mysql data mysql-files
2-7啟動(dòng)后臺(tái)mysql
bin/mysqld_safe --defaults-file=/usr/local/full-path-to-mysql-VERSION-OS/my.cnf --user=mysqlosf &
Next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server
2-8查看mysql是否啟動(dòng) ps -ef grep mysql
4登陸mysql修改密碼使用剛才的臨時(shí)密碼
我這里又出問題了哈哈,始終登陸不上去
Access denied for user 'root'@'localhost' (using password:YES)解決方法最下面
如果登陸上去了可以直接使用剛才的臨時(shí)密碼登陸并且設(shè)置密碼
5-登錄MySQL之后,要求立即修改密碼,否則不能進(jìn)行任何操作。執(zhí)行下面的命令修改'root'@'localhost'的密碼:
SET PASSWORD = PASSWORD('root');
ALTER USER 'root'@'localhost' PASSWORD EXPIRE NEVER;
flush privileges;
6-為了可以遠(yuǎn)程登錄,增加一個(gè)'root'@'%'賬號(hào):
grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;
7-本地測(cè)試連接
按照上面的辦法,繼續(xù)解壓安裝mysql-5.7.19-linux-glibc2.5-x86_64.tar.gz,并且配置為3308,3309端口,就可以安裝多個(gè)mysql了。
解決方案安裝好了登陸不上去:
如果像我上面一樣的話
原因是如下紅色框內(nèi)的英文 我的是第二個(gè)mysql需要指定socket和port,英文意思就是說 如果你沒有指定socket的話那么會(huì)選擇默認(rèn)的 因?yàn)槲覀儼惭b多個(gè)mysql 所以這個(gè)必須指定
mysql --socket=/tmp/mysql3307.sock --port=3307 -uroot -p
如果這里不小心丟失了密碼了或者密碼過期了那么可以通過這個(gè)方式重置密碼:
5-重置密碼:
5-1關(guān)閉進(jìn)程
kill `cat /usr/local/mysql-5.7.19-3307/data/mysql-5.7.19-3307.pid`
5-2創(chuàng)建文件mysql-init
5-2-1文件內(nèi)容
第一種內(nèi)容:
ALTER USER 'root'@'localhost' IDENTIFIED BY 'mysqlosf';
保存內(nèi)容之后啟動(dòng)
代碼如下:
bin/mysqld_safe --defaults-file=/usr/local/mysql-5.7.19-3307/my.cnf --init-file=/usr/local/mysql-5.7.19-3307/mysql-init --user=mysqlosf &
如果上述內(nèi)容不成功選擇第二種內(nèi)容
UPDATE mysql.user
SET authentication_string = PASSWORD('MyNewPass'), password_expired = 'N'
WHERE User = 'root' AND Host = 'localhost';
FLUSH PRIVILEGES;
保存內(nèi)容之后啟動(dòng)
代碼如下:
bin/mysqld_safe --defaults-file=/usr/local/mysql-5.7.19-3307/my.cnf --init-file=/usr/local/mysql-5.7.19-3307/mysql-init --user=mysqlosf &
以上就是多個(gè)mysql5.7.19(tar.gz)在linux下的安裝圖文教程詳解的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
學(xué)習(xí)教程快速掌握從入門到精通的SQL知識(shí)。