MySQL workbench是为开发人员、DBA和数据库架构师设计的统一可视化工具。MySQL workbench提供了先进的数据建模、灵活的SQL编辑器和全面的管理工具。MySQL工作台可以在Windows上使用,
MySQL Workbench用在Linux和Mac上,是专门为MySQL设计的ER/数据库建模工具。
Step 0: Install the relational database
在跟随工作台之前安装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命令安装的好处是更方便,缺点是用yum命令安装的版本稍微落后于最新版本.
终端提示完成后,意味着安装完成。mysql的配置文件安装到/etc/my.cnf,mysql服务器的启动脚本安装到/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.
启动MySQL服务器的命令是:
root-shell service mysqld start
如果想在centOS打开时自动启动MySQL server,可以使用命令。
root-shell chkconfig --levels 235 mysqld on
安装完mysql和mysq lserver之后,就可以安装workbench了。
第一步:从mysql官方网站下载工作台安装文件。
第二步:下载后,点击安装。
双击下载的文件进行安装。
系统会提示您需要额外安装的软件包,然后单击install。
提示输入密码,只需输入root的密码。
之后它会自己下载依赖包。
步骤3:打开端口3306。
因为mysql默认使用端口3306,而centOS默认不打开这个端口,所以你要先打开。命令是
/sbin/iptables -I INPUT -p tcp --dport 3036 -j ACCEPT
保存设置
/etc/rc.d/init.d/iptables save
第四步:找到安装的程序并运行MySQL workbench。
You can see the MySQL workbench under the application design.
创建新连接。
点按“储存在钥匙串中”来存储密码。
然后保持OK直到你创建这个连接。
您可以看到我们已经创建了一个新的连接。双击打开此连接。
你也看到了,现在整个车库还是空的,什么都没有。