Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
development:database:postgresql [2021/06/21 19:39] kalenpw |
development:database:postgresql [2022/11/28 19:59] (current) kalenpw |
||
|---|---|---|---|
| Line 4: | Line 4: | ||
| ===== Installation ===== | ===== Installation ===== | ||
| <code bash> | <code bash> | ||
| + | # Linux | ||
| sudo apt install postgresql postgresql-contrib | sudo apt install postgresql postgresql-contrib | ||
| + | |||
| + | # Mac | ||
| + | brew install postgresql | ||
| + | # Starting service | ||
| + | brew services start postgresql | ||
| </ | </ | ||
| Line 12: | Line 18: | ||
| ALTER ROLE postgres WITH PASSWORD ' | ALTER ROLE postgres WITH PASSWORD ' | ||
| </ | </ | ||
| + | ---- | ||