国产数据实战之docker部署MyWebSQL数据库管理工具

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,高可用系列 2核4GB
简介: 【10月更文挑战第23天】国产数据实战之docker部署MyWebSQL数据库管理工具

一、MyWebSQL介绍

1.MyWebSQL简介

MyWebSql 是一个基于Web的MySQL/Postgres数据库管理客户端,除了操作表格数据外,还可以对包括视图,存储过程,触发器和函数在内的对象进行控制。支持数据和查询结果的导入导出,还内置一个带语法着色功能的SQL编辑器。

2.MyWebSQL特点

1.快速,直观,开发人员友好的用户界面。
2.兼容所有主要的网络浏览器。
3.创建/编辑表结构,无需编写查询。
4.WYSIWYG编辑数据库表和查询​​数据。
5.同时编辑和删除多个记录极其轻松。
6.语法突出显示富文本sql编辑器内部的浏览器,无需任何插件。
7.将完整的数据库/表/查询结果导出到外部文件。
8.在不学习单个命令的情况下使用MySQL相关工具。
9.顺滑的界面,支持多种主题。
10.在几乎所有主要服务器配置上易于部署和安装。

二、检查本地环境

1.检查docker状态

[root@node config]# systemctl status docker |grep active
   Active: active (running) since Fri 2022-10-14 14:06:47 CST; 5h 7min ago

2.检查docker-compose版本

[root@node config]# docker-compose version
docker-compose version 1.25.0, build 0a186604
docker-py version: 4.1.0
CPython version: 3.7.4
OpenSSL version: OpenSSL 1.1.0l  10 Sep 2019

三、下载MyWebSQL镜像

[root@node mywebsql]# docker pull rizo928/mywebsql-flex
Using default tag: latest
latest: Pulling from rizo928/mywebsql-flex
7dcf5a444392: Pull complete 
759aa75f3cee: Pull complete 
3fa871dc8a2b: Pull complete 
224c42ae46e7: Pull complete 
9e4d7c038c3d: Pull complete 
2bef889cbb8f: Pull complete 
be57bc4687e5: Pull complete 
60c801568b81: Pull complete 
8c2e7907f75b: Pull complete 
0b1b15dd6a1b: Pull complete 
23d29f4252f8: Pull complete 
d687c5477ed5: Pull complete 
2941b08edd24: Pull complete 
3b4a514b0015: Pull complete 
9bafa9902ec3: Pull complete 
Digest: sha256:3debe666e4b65c116e2814ae070b54079654ca561745491d51138230ca21c673
Status: Downloaded newer image for rizo928/mywebsql-flex:latest
docker.io/rizo928/mywebsql-flex:latest

四、部署MyWebSQL工具

1.编辑docker-compose.yaml

[root@node mywebsql]# cat docker-compose.yaml 
version: '3.0'
services:
  db:
    image: mariadb:10.5
    container_name: mywebsql-db
    restart: always
    environment:
      - MYSQL_ROOT_PASSWORD=mindoc
      - MYSQL_DATABASE=mindoc
      - MYSQL_USER=mindoc
      - MYSQL_PASSWORD=mindoc
    volumes:
      - /data/mindoc/db:/var/lib/mysql  # Requested, specifies the path to MySQL data persistent store.
    networks:
      - mywebsql
    ports:
      - 3422:3306
  webmysql:
    image: rizo928/mywebsql-flex 
    container_name: mywebsql
    restart: always
    volumes:
      - /data/mywebsql/config:/config
    ports:
      - 9088:80
    depends_on:
      - db
    networks:
      - mywebsql

networks:
  mywebsql:

2.创建MyWebSQL容器

[root@node mywebsql]# docker-compose up -d
Creating network "mywebsql_mywebsql" with the default driver
Creating mywebsql-db ... done
Creating mywebsql    ... done

3.查看MyWebSQL容器状态

[root@node mywebsql]# docker ps
CONTAINER ID   IMAGE                          COMMAND                  CREATED             STATUS             PORTS                                                  NAMES
0fb0ebac00d6   mysql:5.7                      "docker-entrypoint.s…"   About an hour ago   Up About an hour   0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp   some-mysql
3fa0565b18d8   rizo928/mywebsql-flex          "/sbin/my_init"          2 hours ago         Up 37 minutes      0.0.0.0:9088->80/tcp, :::9088->80/tcp                  mywebsql
3f49db3d5264   mariadb:10.5                   "docker-entrypoint.s…"   2 hours ago         Up 2 hours         0.0.0.0:3422->3306/tcp, :::3422->3306/tcp              mywebsql-db

4.查看MyWebSQL日志

[root@node mywebsql]# docker logs mywebsql
Starting pre-service scritps in /etc/my_init.d
*** Running: /etc/my_init.d/startup.sh
mywebsql installed...
config directory exists
/config is Empty
starting rc.local scritps
*** Running: /etc/rc.local
Booting runit daemon...
Process runsvdir running with PID 222
Begin shutting down runit services...
Starting pre-service scritps in /etc/my_init.d
*** Running: /etc/my_init.d/startup.sh
mywebsql installed...
config directory exists
we are already configured
*** Running: /etc/rc.local
starting rc.local scritps
Booting runit daemon...
Process runsvdir running with PID 236
Begin shutting down runit services...
Starting pre-service scritps in /etc/my_init.d
*** Running: /etc/my_init.d/startup.sh
mywebsql installed...
config directory exists
we are already configured
*** Running: /etc/rc.local
starting rc.local scritps
Booting runit daemon...
Process runsvdir running with PID 236
httpd (pid 245) already running
Begin shutting down runit services...
Starting pre-service scritps in /etc/my_init.d
*** Running: /etc/my_init.d/startup.sh
mywebsql installed...
config directory exists
we are already configured
*** Running: /etc/rc.local
starting rc.local scritps
Booting runit daemon...
Process runsvdir running with PID 236
Begin shutting down runit services...
Starting pre-service scritps in /etc/my_init.d
*** Running: /etc/my_init.d/startup.sh
mywebsql installed...
config directory exists
we are already configured
*** Running: /etc/rc.local
starting rc.local scritps
Booting runit daemon...
Process runsvdir running with PID 236
httpd (pid 245) already running

五、进入MyWebSQL的web登录页

在这里插入图片描述

六、检查TiDB集群状态

1.检查TiDB各组件容器状态

[root@server ~]# docker ps -a
CONTAINER ID   IMAGE                                                                 COMMAND                  CREATED      STATUS          PORTS                                                                                                                                  NAMES
e3a109b3ac77   pingcap/tispark:v2.1.1                                                "/opt/spark/sbin/sta…"   3 days ago   Up 4 minutes    0.0.0.0:38081->38081/tcp, :::38081->38081/tcp                                                                                          tidb-docker-compose-master_tispark-slave0_1
750f938b9669   pingcap/tispark:v2.1.1                                                "/opt/spark/sbin/sta…"   3 days ago   Up 4 minutes    0.0.0.0:7077->7077/tcp, :::7077->7077/tcp, 0.0.0.0:8080->8080/tcp, :::8080->8080/tcp                                                   tidb-docker-compose-master_tispark-master_1
7fd728cc1019   pingcap/tidb:latest                                                   "/tidb-server --stor…"   3 days ago   Up 7 seconds    0.0.0.0:4000->4000/tcp, :::4000->4000/tcp, 0.0.0.0:10080->10080/tcp, :::10080->10080/tcp                                               tidb-docker-compose-master_tidb_1
0e18dbcd2efe   pingcap/tikv:latest                                                   "/tikv-server --addr…"   3 days ago   Up 20 seconds   20160/tcp                                                                                                                              tidb-docker-compose-master_tikv0_1
3789709f53b1   pingcap/tikv:latest                                                   "/tikv-server --addr…"   3 days ago   Up 4 minutes    20160/tcp                                                                                                                              tidb-docker-compose-master_tikv2_1
304c90121b1c   pingcap/tikv:latest                                                   "/tikv-server --addr…"   3 days ago   Up 4 minutes    20160/tcp                                                                                                                              tidb-docker-compose-master_tikv1_1
d3f461f3e313   pingcap/pd:latest                                                     "/pd-server --name=p…"   3 days ago   Up 19 seconds   2380/tcp, 0.0.0.0:49154->2379/tcp, :::49154->2379/tcp                                                                                  tidb-docker-compose-master_pd1_1
6b2a18f4b823   prom/pushgateway:v0.3.1                                               "/bin/pushgateway --…"   3 days ago   Up 19 seconds   9091/tcp                                                                                                                               tidb-docker-compose-master_pushgateway_1
51deb002f753   grafana/grafana:6.0.1                                                 "/run.sh"                3 days ago   Up 18 seconds   0.0.0.0:3000->3000/tcp, :::3000->3000/tcp                                                                                              tidb-docker-compose-master_grafana_1
82b528f74a0c   pingcap/pd:latest                                                     "/pd-server --name=p…"   3 days ago   Up 4 minutes    2380/tcp, 0.0.0.0:49153->2379/tcp, :::49153->2379/tcp                                                                                  tidb-docker-compose-master_pd2_1
0939bfabe52b   prom/prometheus:v2.2.1                                                "/bin/prometheus --l…"   3 days ago   Up 17 seconds   0.0.0.0:9090->9090/tcp, :::9090->9090/tcp                                                                                              tidb-docker-compose-master_prometheus_1
b2d645e3b30a   pingcap/tidb-vision:latest                                            "/bin/sh -c 'sed -i …"   3 days ago   Up 4 minutes    80/tcp, 443/tcp, 2015/tcp, 0.0.0.0:8010->8010/tcp, :::8010->8010/tcp                                                                   tidb-docker-compose-master_tidb-vision_1
c3cb9f6acc84   pingcap/pd:latest                                                     "/pd-server --name=p…"   3 days ago   Up 14 seconds   2380/tcp, 0.0.0.0:49155->2379/tcp, :::49155->2379/tcp                                                                                  tidb-docker-compose-master_pd0_1

2.本地访问TiDB集群

[root@server ~]#  mysql -h 127.0.0.1 -P 4000 -u root
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.25-TiDB-v5.0.1 TiDB Server (Apache License 2.0) Community Edition, MySQL 5.7 compatible

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MySQL [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| INFORMATION_SCHEMA |
| METRICS_SCHEMA     |
| PERFORMANCE_SCHEMA |
| ittest             |
| mysql              |
| test               |
+--------------------+
6 rows in set (0.01 sec)

七、配置MyWebSQL的特定数据库实例

1.编辑server.php

新增以下模块
```cpp

           'TiDB-remote'          => array(
                                         'host'     => '192.168.3.240:4000',
                                         'driver'   => 'mysql5'
                                     )
## 2.查看server.php

```cpp
[root@node config]# cat servers.php 
<?php
/**
 * This file is a part of MyWebSQL package
 * defining more that one server here will give user the option to select a server at login time
 * Notes:
 *   Server list is used only when authentication type is LOGIN
 *
 * @file:      config/servers.php
 * @author     Samnan ur Rehman
 * @copyright  (c) 2008-2014 Samnan ur Rehman
 * @web        http://mywebsql.net
 * @license    http://mywebsql.net/license
 */

    // add or remove list of servers below

    // please make sure you have the proper extensions enabled in your php config
    // to successfully connect to servers other than MySQL

    // valid drivers types are:
    // mysql4, mysql5, mysqli, sqlite, sqlite3, pgsql

    // for sqlite driver:
    //   'host' should be the folder name where sqlite databases are saved,
    //   'user' and 'password' options should be set for additional security

    // if true, a free form server name will be allowed to be entered instead of selecting
    // existing one from the list
    $ALLOW_CUSTOM_SERVERS = TRUE;

    // if the above is true, only the following server types will be allowed
    // sqlite is not recommended here, in order to avoid possible file system attacks
    $ALLOW_CUSTOM_SERVER_TYPES = "mysql,pgsql";

    $SERVER_LIST = array(
        'Localhost MySQL'           => array(
                                     'host'     => 'localhost',
                                     'driver'   => extension_loaded('mysqli') ? 'mysqli' : 'mysql5'
                                 ),
#                'remote  MySQL'             => array(^M
#                                             'host'     => '192.168.3.152:3776',^M
#                                             'driver'   => extension_loaded('mysqli') ? 'mysqli' : 'mysql5'^M
#                                         ),^M

        'SQLite Databases'          => array(
                                     'host'     => 'c:/sqlitedb/',
                                     'driver'   => 'sqlite3',
                                     'user'     => 'root',    // set this yourself
                                     'password' => 'sqlite'  // set this yourself
                                 ),
         'Localhost PostgreSQL'     => array(
                                     'host'     => 'localhost',
                                     'driver'   => 'pgsql'
                                 ),

                'TiDB-remote'          => array(
                                     'host'     => '192.168.3.240:4000',
                                     'driver'   => 'mysql5'
                                 )


        /*'MySQL Proxy Server'  => array(
                                     'host'     => 'localhost:4040',
                                     'driver'   => 'mysql5'
                                 ),
        'MySQL 4'             => array(
                                     'host'     => 'localhost',
                                     'driver'   => 'mysql4'
                                 ),
        */
    );
?>

3.重启MyWebSQL容器

[root@node config]# docker restart mywebsql
mywebsql

八、MyWebSQL工具连接TiDB数据库

1.进入MyWebSQL的登录页

在这里插入图片描述

2.连接TiDB数据库

在这里插入图片描述

3.查看TiDB的用户

在这里插入图片描述

4.查看数据表

在这里插入图片描述

相关实践学习
如何在云端创建MySQL数据库
开始实验后,系统会自动创建一台自建MySQL的 源数据库 ECS 实例和一台 目标数据库 RDS。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
18天前
|
存储 监控 安全
数据库多实例的部署与配置方法
【10月更文挑战第23天】数据库多实例的部署和配置需要综合考虑多个因素,包括硬件资源、软件设置、性能优化、安全保障等。通过合理的部署和配置,可以充分发挥多实例的优势,提高数据库系统的运行效率和可靠性。在实际操作中,要不断总结经验,根据实际情况进行调整和优化,以适应不断变化的业务需求。
|
8天前
|
存储 SQL 数据库
深入浅出后端开发之数据库优化实战
【10月更文挑战第35天】在软件开发的世界里,数据库性能直接关系到应用的响应速度和用户体验。本文将带你了解如何通过合理的索引设计、查询优化以及恰当的数据存储策略来提升数据库性能。我们将一起探索这些技巧背后的原理,并通过实际案例感受优化带来的显著效果。
26 4
|
14天前
|
PHP 数据库 数据安全/隐私保护
布谷直播源码部署服务器关于数据库配置的详细说明
布谷直播系统源码搭建部署时数据库配置明细!
|
15天前
|
存储 缓存 Kubernetes
docker的替代工具有哪些?
【10月更文挑战第28天】docker的替代工具有哪些?
56 1
|
15天前
|
监控 关系型数据库 MySQL
数据库优化:MySQL索引策略与查询性能调优实战
【10月更文挑战第27天】本文深入探讨了MySQL的索引策略和查询性能调优技巧。通过介绍B-Tree索引、哈希索引和全文索引等不同类型,以及如何创建和维护索引,结合实战案例分析查询执行计划,帮助读者掌握提升查询性能的方法。定期优化索引和调整查询语句是提高数据库性能的关键。
82 1
|
16天前
|
监控 关系型数据库 MySQL
数据库优化:MySQL索引策略与查询性能调优实战
【10月更文挑战第26天】数据库作为现代应用系统的核心组件,其性能优化至关重要。本文主要探讨MySQL的索引策略与查询性能调优。通过合理创建索引(如B-Tree、复合索引)和优化查询语句(如使用EXPLAIN、优化分页查询),可以显著提升数据库的响应速度和稳定性。实践中还需定期审查慢查询日志,持续优化性能。
47 0
|
9天前
|
SQL 关系型数据库 MySQL
go语言数据库中mysql驱动安装
【11月更文挑战第2天】
23 4
|
7天前
|
SQL 关系型数据库 MySQL
12 PHP配置数据库MySQL
路老师分享了PHP操作MySQL数据库的方法,包括安装并连接MySQL服务器、选择数据库、执行SQL语句(如插入、更新、删除和查询),以及将结果集返回到数组。通过具体示例代码,详细介绍了每一步的操作流程,帮助读者快速入门PHP与MySQL的交互。
20 1
|
1月前
|
存储 关系型数据库 MySQL
Mysql(4)—数据库索引
数据库索引是用于提高数据检索效率的数据结构,类似于书籍中的索引。它允许用户快速找到数据,而无需扫描整个表。MySQL中的索引可以显著提升查询速度,使数据库操作更加高效。索引的发展经历了从无索引、简单索引到B-树、哈希索引、位图索引、全文索引等多个阶段。
61 3
Mysql(4)—数据库索引
|
18天前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。
本文介绍了在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。同时,文章还对比了编译源码安装与使用 RPM 包安装的优缺点,帮助读者根据需求选择最合适的方法。通过具体案例,展示了编译源码安装的灵活性和定制性。
59 2