Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/containerum/mariadb-solution
MariaDB server for launching on Containerum platform
https://github.com/containerum/mariadb-solution
db howto mariadb mariadb-server
Last synced: 3 months ago
JSON representation
MariaDB server for launching on Containerum platform
- Host: GitHub
- URL: https://github.com/containerum/mariadb-solution
- Owner: containerum
- Created: 2017-12-27T09:55:58.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-30T12:16:03.000Z (over 6 years ago)
- Last Synced: 2024-10-12T02:42:07.159Z (4 months ago)
- Topics: db, howto, mariadb, mariadb-server
- Homepage: https://containerum.com
- Size: 4.11 MB
- Stars: 2
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MariaDB-solution
MariaDB is an open source database forked from MySQL.
### How it worksThe server is launched on containerum.com, so you can connect to it using any data management tool, e.g. Valentina Studio.
### It consists of:
* Maria DB
To launch this solution on Containerum.com sign up with the service, download and use [Containerum CLI](https://github.com/containerum/chkit) `chkit`.
1. Run the Solution with `chkit solution`:
```
chkit solution run containerum/MariaDB-solution -e NAME=maria-db -e USER=maria -e PASS=12345678
```2. Make sure that the Solution is running:
```
$ chkit get deploy
+----------------+------+-------------+------+-------+-----+
| NAME | PODS | PODS ACTIVE | CPU | RAM | AGE |
+----------------+------+-------------+------+-------+-----+
| maria-db-0scpq | 1 | 1 | 500m | 512Mi | 9m |
+----------------+------+-------------+------+-------+-----+
```
3. Using `chkit get` get the address and the port to access the running Solution:
```
$ chkit get svc
+----------------+----------------+----------+-------------------+-----------------+-----+
| NAME | CLUSTER-IP | EXTERNAL | HOST | PORTS | AGE |
+----------------+----------------+----------+-------------------+-----------------+-----+
| maria-db-0scpq | 10.107.136.66 | true | x2.containerum.io | 11056:3306/TCP | 5s |
+----------------+----------------+----------+-------------------+-----------------+-----+
```
4. Open your data management tool, e.g. Valentina Studio, and connect to `x2.containerum.io:11056`- now you can create or manage your DB.