https://github.com/containerum/postgresql-solution
PostgreSQL server for launching on Containerum platform
https://github.com/containerum/postgresql-solution
db howto one-click-deploy postgresql postgresql-database
Last synced: 11 months ago
JSON representation
PostgreSQL server for launching on Containerum platform
- Host: GitHub
- URL: https://github.com/containerum/postgresql-solution
- Owner: containerum
- Created: 2017-10-03T11:35:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-30T12:16:07.000Z (almost 8 years ago)
- Last Synced: 2025-04-09T18:46:05.918Z (about 1 year ago)
- Topics: db, howto, one-click-deploy, postgresql, postgresql-database
- Homepage: https://containerum.com
- Size: 8.53 MB
- Stars: 3
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PostgreSQL-solution
PostgreSQL is a free object relational database management system (ORDBMS), world's most advanced open source database which serves as a good alternative to commercial databases.
### How it works
The server is launched on containerum.com, so you can connect to it using any data management tool, e.g. Valentina Studio.
### It consists of:
* PostgreSQL
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/postgresql-solution -e USER=maria -e PASSWORD=12345678 -e NAME=pg
```
* PASSWORD - password of database,
* USER - database user,
* NAME - name of deploy ana service
2. Make sure that the Solution is running:
```
$ chkit get deploy
+----------------+------+-------------+------+-------+-----+
| NAME | PODS | PODS ACTIVE | CPU | RAM | AGE |
+----------------+------+-------------+------+-------+-----+
| pg-dk2ix | 1 | 1 | 500m | 512Mi | 7m |
+----------------+------+-------------+------+-------+-----+
```
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 |
+----------------+----------------+----------+-------------------+----------------+-----+
| pg-dk2ix | 10.109.153.6 | true | x2.containerum.io | 33577:5432/TCP | 8m |
+----------------+----------------+----------+-------------------+----------------+-----+
```
4. Open your data management tool, e.g. Valentina Studio, and connect to `x2.containerum.io:33577`- now you can create or manage your DB.