sh.osa.cubetiqs.com/postgres-setup.sh
2021-04-03 14:04:27 +07:00

19 lines
318 B
Bash

#!/bin/bash
# Catch errors
set -e
# Update the repository
sudo apt-get update
# Upgrade repository software
sudo apt upgrade -y
# Install postgres and common utils
sudo apt install postgresql postgresql-contrib -y
# Enable postgres
sudo systemctl enable postgresql
# Status nginx
sudo systemctl status postgresql