中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

怎么使用OEL7.2系統(tǒng)system管理源碼安裝的mysql5.7-創(chuàng)新互聯(lián)

這篇文章主要講解了“怎么使用OEL7.2系統(tǒng)system管理源碼安裝的mysql5.7”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“怎么使用OEL7.2系統(tǒng)system管理源碼安裝的mysql5.7”吧!

成都創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),措美企業(yè)網(wǎng)站建設(shè),措美品牌網(wǎng)站建設(shè),網(wǎng)站定制,措美網(wǎng)站建設(shè)報價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,措美網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。

1描述
使用OEL7.2系統(tǒng) system 管理源碼安裝的mysql5.7多實例.
2操作環(huán)境
2.1OS info
OEL7.2 x64
3過程設(shè)計
編輯/etc/my.cnf ,本文創(chuàng)建mysqld@3307.service與mysqld@3308.service兩個實例,分別對應(yīng)3307與3308端口。創(chuàng)建相應(yīng)實例目錄。
復(fù)制systemd 服務(wù)文件,復(fù)制mysql base目錄下/usr/local/mysql/usr/lib/systemd/system/的mysqld@.service文件到系統(tǒng)/usr/lib/systemd/system目錄下,并重命名成與多實例名一致的文件。
systemctl daemon-reload
systemctl start mysqld@3307.service
systemctl start mysqld@.service3308
4詳細(xì)步驟操作
[root@localhost ~]# vi /etc/my.cnf
[root@localhost ~]# cat !$
cat /etc/my.cnf
[mysqld@3307]
datadir=/usr/local/mysql/data/3307
socket=/usr/local/mysql/data/3307/mysql.sock
port=3307
log-error=/var/log/mysqld-service3307.log
[mysqld@3308]
datadir=/usr/local/mysql/data/3308
socket=/usr/local/mysql/data/3308/mysql.sock
port=3308
log-error=/var/log/mysqld-service3308.log
[root@localhost ~]# mkdir -p /usr/local/mysql/data/3307
[root@localhost ~]# mkdir -p /usr/local/mysql/data/3308
[root@localhost ~]# chown -R mysql.mysql /usr/local/mysql/data/
[root@localhost ~]# cd /usr/lib/systemd/system
[root@localhost system]# ls -l mysqld*
-rw-r--r--. 1 root root 1637 May  3 03:07 mysqld.service
-rw-r--r--. 1 root root 1668 May  3 03:07 mysqld@.service
[root@localhost system]# cp mysqld@.service mysqld@3307
[root@localhost system]# cp mysqld@.service mysqld@3308
[root@localhost system]# systemctl daemon-reload
[root@localhost system]# mkdir /var/run/mysqld/
[root@localhost system]# chown -R mysql.mysql /var/run/mysqld
[root@localhost system]# cd /var/log/
[root@localhost log]# ls -lrt|tail
-rw-r--r--. 1 root  root    8460 May  8 01:20 boot.log
-rw-------. 1 root  root    1739 May  8 01:20 cron
-rw-r--r--. 1 root  root     360 May  8 01:20 wpa_supplicant.log
-rw-------. 1 root  root     594 May  8 01:20 maillog
-rw-rw-r--. 1 root  utmp   22656 May  8 01:21 wtmp
-rw-r--r--. 1 root  root  291416 May  8 01:21 lastlog
-rw-r-----. 1 mysql mysql   4377 May  8 01:24 mysqld-service3307.log
-rw-r-----. 1 mysql mysql   4449 May  8 01:24 mysqld-service3308.log
-rw-------. 1 root  root  540273 May  8 01:24 messages
-rw-------. 1 root  root    7764 May  8 01:24 secure
[root@localhost log]# grep password mysqld-service3307.log
2018-05-07T17:24:01.123362Z 1 [Note] A temporary password is generated for root@localhost: x&aQ/IT&p5%u
[root@localhost log]# grep password mysqld-service3308.log
2018-05-07T17:24:17.635837Z 1 [Note] A temporary password is generated for root@localhost: xt2aq-KYGWnt
[root@localhost log]# /usr/local/mysql/bin/mysql -uroot -p'x&aQ/IT&p5%u' -S /usr/local/mysql/data/3307/mysql.sock
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.22
Copyright (c) 2000, 2018, 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> exit
Bye
[root@localhost log]# /usr/local/mysql/bin/mysql -uroot -p'xt2aq-KYGWnt' -S /usr/local/mysql/data/3308/mysql.sock
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.22
Copyright (c) 2000, 2018, 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> exit
Bye
[root@localhost log]#
[root@localhost log]# systemctl stop mysqld@330*
[root@localhost log]# ps -ef |grep mysql
root       3328   2861  0 01:32 pts/0    00:00:00 grep --color=auto mysql
[root@localhost log]# systemctl start mysqld@330*
[root@localhost log]# ps -ef |grep mysql
root       3335   2861  0 01:32 pts/0    00:00:00 grep --color=auto mysql
[root@localhost log]# systemctl start mysqld@330*
[root@localhost log]# systemctl start mysqld@3307
[root@localhost log]# systemctl start mysqld@3308
[root@localhost log]# ps -ef |grep mysql
mysql      3367      1  5 01:32 ?        00:00:00 /usr/local/mysql/bin/mysqld --defaults-group-suffix=@3307 --daemonize --pid-file=/var/run/mysqld/mysqld-3307.pid
mysql      3420      1 10 01:32 ?        00:00:00 /usr/local/mysql/bin/mysqld --defaults-group-suffix=@3308 --daemonize --pid-file=/var/run/mysqld/mysqld-3308.pid
root       3449   2861  0 01:32 pts/0    00:00:00 grep --color=auto mysql
[root@localhost log]# systemctl stop mysqld@330*
[root@localhost log]# ps -ef |grep mysql
root       3459   2861  0 01:32 pts/0    00:00:00 grep --color=auto mysql
[root@localhost log]# systemctl start mysqld@330*
[root@localhost log]# ps -ef |grep mysql
root       3466   2861  0 01:33 pts/0    00:00:00 grep --color=auto mysql
[root@localhost log]#

感謝各位的閱讀,以上就是“怎么使用OEL7.2系統(tǒng)system管理源碼安裝的mysql5.7”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對怎么使用OEL7.2系統(tǒng)system管理源碼安裝的mysql5.7這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

本文題目:怎么使用OEL7.2系統(tǒng)system管理源碼安裝的mysql5.7-創(chuàng)新互聯(lián)
分享路徑:http://www.rwnh.cn/article36/cegdpg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)服務(wù)器托管、響應(yīng)式網(wǎng)站、做網(wǎng)站網(wǎng)站設(shè)計公司、網(wǎng)站維護(hù)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

營銷型網(wǎng)站建設(shè)
镇雄县| 濉溪县| 青阳县| 阳西县| 张家口市| 保靖县| 汕头市| 绍兴县| 阳曲县| 麻阳| 腾冲县| 阿拉善右旗| 右玉县| 开原市| 苏尼特左旗| 全椒县| 阿城市| 沧源| 沽源县| 博白县| 长海县| 绥化市| 鹰潭市| 霞浦县| 溧阳市| 阿拉善左旗| 五河县| 赫章县| 瓮安县| 汉沽区| 芦山县| 平定县| 阿克陶县| 拉萨市| 榆社县| 洛宁县| 深圳市| 密云县| 巍山| 奎屯市| 东方市|