# 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 :

  ```bash
  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 :

  ```bash
  service nginx start
  chkconfig nginx on
  ```

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

## Other Reference

Reference:

* <https://devconnected.com/how-to-install-and-enable-ssh-server-on-debian-10/>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dbm-cli.docs.juniyadi.id/master.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
