若用户希望在本地PC上连接和管理分析型数据库,则可以使用MySQL官方的命令行工具,或建议使用SQL WorkBench/J工具进行连接和管理。
使用MySQL官方命令行工具时,支持5.1.x/5.5.x/5.6.x版本的MySQL CLI,连接范例如下:
- [cloud@iZ28unhwyqvZ ~]$ mysql -h<DOMAIN_URL> -P<PORT> –u<ACCESS_KEY_ID> -p<ACCESS_KEY_SECRET> -D<DB_NAME>
- Reading table information for completion of table and column names
- You can turn off this feature to get a quicker startup with -A
- Welcome to the MySQL monitor. Commands end with ; or \g.
- Your MySQL connection id is 968288632
- Server version: 5.1.31-mysql-ads
- 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.
- mysql>
需要注意的是,连接时建议使用 -D 提前指定数据库名,或是在连接成功后立刻使用use语句切换数据库,否则执行其他命令时会报”only<create database> or <show database> areallowed from admin database connection”错误。
更多的,我们会使用一些本地GUI工具在PC机上进行开发调试,很多工具均能部分上兼容分析型数据库。综合来看兼容性最好的跨平台GUI工具是SQLWorkBench/J,目前可以在
http://www.sql-workbench.net/上免费下载。
下载好SQL Workbench/J程序后,还需要下载MySQL JDBC 驱动(如:
http://dev.mysql.com/downloads/connector/j/中下载)。下载驱动后,打开SQL WorkBench/J程序,选择 File -> ManageDrivers,选择MySQL后填写刚刚下载的驱动jar包路径。
一切配置完毕后,点击File -> Connect Window,Driver选择MySQL,按照jdbc:mysql://<Domain_url>:\<Port>/<db_name>格式填写URL,并在用户名/密码中填写合法账号的ACCESS_KEY_ID和ACCESS_KEY_SECRET,如下图所示:
配置完毕后点击ok,就可以连接到分析型数据库,执行DDL或DML等。