如何在多例項基礎上再新增一個mysql的例項

weixin_34026276發表於2017-11-23

1)建立資料檔案所需的目錄

1
2
3
# mkdir -p /data/3308/data
# cp /data/3306/my.cnf /data/3308
# cp /data/3306/mysql /data/3308

2)配置許可權

1
2
3
# chown mysql.mysql /data/3308 -R
# chown root.root /data/3308/mysql 
# chmod 700 /data/3308/mysql

3)修改資料配置檔案及啟動指令碼

1
2
3
4
5
6
7
8
9
10
11
12
13
# sed -i 's/3306/3308/g' /data/3308/my.cnf
# sed -i 's/server-id = 1/server-id = 8/g' /data/3308/my.cnf 
# cat my.cnf | grep id
pid-file /data/3308/mysql.pid
server-id = 8
pid-file=/data/3308/mysqld.pid
# sed -i 's/3306/3308/g' /data/3308/mysql
# cd /application/mysql/scripts/
# ./mysql_install_db --datadir=/data/3308/data --basedir=/application/mysql --user=mysql
# /data/3308/mysql start
Starting MySQL...
# echo $?
0

4)檢查資料庫的執行情況

1
2
3
4
# netstat -tunlp | grep 330*
tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN      4052/mysqld         
tcp        0      0 0.0.0.0:3307                0.0.0.0:*                   LISTEN      4048/mysqld         
tcp        0      0 0.0.0.0:3308                0.0.0.0:*                   LISTEN      5502/mysqld

5)配置資料庫開機自動啟動

1
2
3
4
5
6
7
# echo "/data/3308/mysql start">>/etc/rc.local
# tail -4 /etc/rc.local 
顯示的結果如下:
# mysql multi instances startup
/data/3306/mysql start
/data/3307/mysql start
/data/3308/mysql start

6)初始化資料庫

1
2
3
4
5
6
7
8
9
10
11
設定mysql初始密碼:
# mysqladmin -u root -S /data/3308/mysql.sock password 'redhat12345'
# mysql -u root -S /data/3308/mysql.sock -predhat12345
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.5.32-log Source distribution
Copyright (c) 2000, 2013, 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.









本文轉自 冰凍vs西瓜 51CTO部落格,原文連結:http://blog.51cto.com/molewan/1860235,如需轉載請自行聯絡原作者

相關文章