Introduction

Database Manager CLI

Easy Manage Local or Remote Database by CLI Command.

Database Support

Name

Support

Status

MySQL

yes

in progress

MariaDB

-

to do

MongoDB

-

to do

Installation Instruction

MySQL

  • CentOS 7

  • Debian 10

Notes :

  • All tutorial has been testing before update

Install Using CentminMOD

yum -y update; curl -O https://centminmod.com/betainstaller73.sh && chmod 0700 betainstaller73.sh && bash betainstaller73.sh

Switch Off Other Apps

  • If you need only MySQL or MariaDB database, then you can swtich off other apps with this command :

    service nginx stop
    service php-fpm stop
    service pure-ftpd stop
    service memcached stop
    chkconfig nginx off
    chkconfig php-fpm off
    chkconfig pure-ftpd off
    chkconfig memcached off
  • If you use them back, then run this command :

    service nginx start
    chkconfig nginx on

Ref: https://community.centminmod.com/threads/mysql-only-installation.15165/

Other Reference

Reference:

Last updated

Was this helpful?