Files
2024-12-26 13:56:45 +01:00

3.0 KiB

SQL database servers and web interface managers


Mariadb SQL database server

Mariadb SQL database server

Mariadb is one of the most popular database servers. Made by the original developers of MySQL.

Command:

armbian-config --cmd DAT001

Author: @armbian

Status: Stable

=== "Configuration"

Database access configuration is done at first install:
- create root password
- create database
- create normal user
- create password for normal user

- Database host: `<your.IP>`

=== "Directories"

- Install directory: `/armbian/mariadb`
- Site configuration directory: `/armbian/mariadb/config`

=== "View logs"

```sh
docker logs -f mariadb
```

Mariadb remove

Command:

armbian-config --cmd DAT002

Author: @armbian

Status: Stable


Mariadb purge with data folder

Command:

armbian-config --cmd DAT003

Author: @armbian

Status: Stable


phpMyAdmin web interface manager

phpMyAdmin web interface manager

Phpmyadmin is a free software tool written in PHP, intended to handle the administration of MySQL over the Web. phpMyAdmin supports a wide range of operations on MySQL and MariaDB.

Command:

armbian-config --cmd DAT005

Author: @armbian

Status: Stable

=== "Access to the web interface"

The web interface is accessible via port **8071**:

- URL: `https://<your.IP>:8071`
- Server: IP from server you are connecting to. If you have installed MariaDB via this tool, then this is `<your.IP>`
- Username: defined at SQL server install (MariaDb)
- Password: defined at SQL server install (MariaDb)

=== "Directories"

- Install directory: `/armbian/phpmyadmin`
- Site configuration directory: `/armbian/phpmyadmin/config`

=== "View logs"

```sh
docker logs -f phpmyadmin
```

phpMyAdmin remove

Command:

armbian-config --cmd DAT006

Author: @armbian

Status: Stable


phpMyAdmin purge with data folder

Command:

armbian-config --cmd DAT007

Author: @armbian

Status: Stable