Installing Postgres
Mac¶
Windows¶
choco install postgres
- Change the default password
- Arctype Connect - Reset Password on Windows
- if you don't know the password
- change it to trust
pg_hba.conf
ALTER USER postgres WITH PASSWORD 'new_password';
- Create a superuser
- with the same name as your Windows user
psql -U postgres
CREATE USER fullchee SUPERUSER
- then exit and run
createdb fullchee
Last update:
2023-04-24