MySQL workbench是为开发人员、数据库管理员和数据库架构师设计的统一可视化工具。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 needed 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服务器,可以使用命令。
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,直到您创建此连接。
您可以看到我们已经创建了一个新的连接。双击打开此连接。
如你所见,整个车库现在还是空的,什么都没有。