From 82e1029a8656ce65a98e22adc1217c6240c74f5f Mon Sep 17 00:00:00 2001 From: Zachary Klosko <31484611+zklosko@users.noreply.github.com> Date: Sat, 2 May 2020 21:28:26 -0400 Subject: [PATCH] Fixed typo --- docs/manual/host-configuration/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/host-configuration/index.md b/docs/manual/host-configuration/index.md index 03a2749b2..0ff85f5f7 100644 --- a/docs/manual/host-configuration/index.md +++ b/docs/manual/host-configuration/index.md @@ -57,7 +57,7 @@ Two of the most important passwords that should be changed *immediately* after i are the passwords used by the PostgreSQL database. It is strongly recommended that you do this before exposing your server to the internet beyond your internal network. -1. Login to PostgreSQL with `sudo -u postgres psql`. `postgres=#` means that you have logged in successfully. +1. Login to PostgreSQL with `sudo -u postgres psql`. The PostgreSQL shell - `postgres=#` - means that you have logged in successfully. 2. Change the admin password with `ALTER USER postgres PASSWORD 'myPassword';`, where `myPassword` is the new password. Make sure to include the semicolon at the end! A response of `ALTER ROLE` means that the command ran successfully. 3. Change the password for the *airtime* user with `ALTER USER airtime WITH PASSWORD 'new_password';`