Update deploy/setup-server.sh

This commit is contained in:
marco 2025-10-16 04:18:35 -04:00
parent 6d7d6c82ef
commit 94bec4cfd6

View File

@ -44,9 +44,9 @@ npm --version
# =================== POSTGRESQL 15 =================== # =================== POSTGRESQL 15 ===================
log_info "Installazione PostgreSQL 15..." log_info "Installazione PostgreSQL 15..."
dnf install -y postgresql15-server postgresql15-contrib dnf install -y postgresql15-server postgresql15-contrib
postgresql-setup --initdb postgresql-15-setup --initdb
systemctl enable postgresql systemctl enable postgresql-15
systemctl start postgresql systemctl start postgresql-15
# Generazione password sicura PostgreSQL # Generazione password sicura PostgreSQL
DB_PASSWORD=$(openssl rand -base64 32 | tr -d "=+/" | cut -c1-25) DB_PASSWORD=$(openssl rand -base64 32 | tr -d "=+/" | cut -c1-25)