Mic92 created page: home

This commit is contained in:
Jörg Thalheim 2014-08-18 13:34:22 +02:00
parent ff2865725f
commit 5b19b5cc88
1 changed files with 15 additions and 1 deletions

View File

@ -2,12 +2,26 @@
### postgres
- Host: postgres
```bash
$ create-postgres-user-and-database foo bar # create user `foo` and give him access to database `bar`
```
Administration shell:
```bash
$ sudo psql -h postgres -u postgres
psql> \l # list databases
psql> \c <database> # connect to database
psql> \d # show tables
```
### mysql
- Host: mysql
```bash
$ create-mysql-user-and-database foo # create database and user `foo`
```
```