Mysql client tool

1. Client tool
Insert picture description here
2. Mysql workbench
official website: https://dev.mysql.com/downloads/workbench/ 3.
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
phpmyadmin
phpMyAdmin, it is a MySQL database management software written in PHP scripts, and it is directly managed using Web graphics mode Tools for MySQL database. phpMyAdmin can be used to create, modify, and delete databases and data tables; it can be used to create, modify, and delete data records; it can be used to import and export the entire database; it can also complete many other MySQL system management tasks.
Official website: https://www.phpmyadmin.net/Download
: https://www.phpmyadmin.net/downloads/

3.1 Recommended OneinStack installation
https://oneinstack.com/auto/
Insert picture description here
wget -c http://mirrors.linuxeye.com/oneinstack-full.tar.gz && tar xzf oneinstack-full.tar.gz && ./oneinstack/install .sh
–php_option 7 --phpcache_option 1 --phpmyadmin

systemctl restart php-fpm
systemctl restart nginx
Nginx install dir: /usr/local/nginx
PHP install dir: /usr/local/php
Opcache Control Panel URL: http://192.168.59.130/ocp.php
phpMyAdmin dir: /data/wwwroot/default/phpMyAdmin
phpMyAdmin Control Panel URL: http://192.168.59.130/phpMyAdmin
redis install dir: /usr/local/redis
memcached install dir: /usr/local/memcached
Index URL: http://192.168.59.130/

3.2 Docker 中安装
[root@centos7 ~]# docker pull phpmyadmin:5.0.4
docker run --name phpmyadmin -d -e PMA_ARBITRARY=1 -p 18080:80 phpmyadmin:5.0.4
[root@centos7 ~]# docker update --restart=always phpmyadmin
http://192.168.1.54:18080/
Insert picture description here
Insert picture description here
Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_41645135/article/details/115025235