MySQL workbench是為開發(fā)人員、DBA和數(shù)據(jù)庫架構(gòu)師設(shè)計(jì)的統(tǒng)一可視化工具。MySQL workbench提供了先進(jìn)的數(shù)據(jù)建模、靈活的SQL編輯器和全面的管理工具。MySQL工作臺(tái)可以在Windows上使用,
MySQL Workbench用在Linux和Mac上,是專門為MySQL設(shè)計(jì)的ER/數(shù)據(jù)庫建模工具。
Step 0: Install the relational database
在跟隨工作臺(tái)之前安裝mysql。這些說明是
yum install mysql mysql-server mysql-libs mysql-server
mysql包的功能有:
"mysql is used for client tools, MySQL-server is used for servers and related tools, and MySQL-lib is used for libraries. These libraries are necessary if you want to provide connections from different languages and environments (such as Perl, Python, etc.). "
用yum命令安裝的好處是更方便,缺點(diǎn)是用yum命令安裝的版本稍微落后于最新版本.
終端提示完成后,意味著安裝完成。mysql的配置文件安裝到/etc/my.cnf,mysql服務(wù)器的啟動(dòng)腳本安裝到/etc /etc/init.d/mysqld
官方解釋:
The sample configuration file is installed in/etc/my.cnf. The init script for starting and stopping the server will be installed in /etc/init.d/mysqld.
啟動(dòng)MySQL服務(wù)器的命令是:
root-shell service mysqld start
如果想在centOS打開時(shí)自動(dòng)啟動(dòng)MySQL server,可以使用命令。
root-shell chkconfig --levels 235 mysqld on
安裝完mysql和mysq lserver之后,就可以安裝workbench了。
第一步:從mysql官方網(wǎng)站下載工作臺(tái)安裝文件。
第二步:下載后,點(diǎn)擊安裝。
雙擊下載的文件進(jìn)行安裝。
系統(tǒng)會(huì)提示您需要額外安裝的軟件包,然后單擊install。
提示輸入密碼,只需輸入root的密碼。
之后它會(huì)自己下載依賴包。
步驟3:打開端口3306。
因?yàn)閙ysql默認(rèn)使用端口3306,而centOS默認(rèn)不打開這個(gè)端口,所以你要先打開。命令是
/sbin/iptables -I INPUT -p tcp --dport 3036 -j ACCEPT
保存設(shè)置
/etc/rc.d/init.d/iptables save
第四步:找到安裝的程序并運(yùn)行MySQL workbench。
You can see the MySQL workbench under the application design.
創(chuàng)建新連接。
點(diǎn)按“儲(chǔ)存在鑰匙串中”來存儲(chǔ)密碼。
然后保持OK直到你創(chuàng)建這個(gè)連接。
您可以看到我們已經(jīng)創(chuàng)建了一個(gè)新的連接。雙擊打開此連接。
你也看到了,現(xiàn)在整個(gè)車庫還是空的,什么都沒有。