Instalacion de PostgreSQL nativo Centos (version 8.4)
Ejecutar el siguiente comando
shell > sudo yum install postgresql-server postgresql-contrib
Creacion de Super Usuario
postgres=# CREATE USER usuario WITH PASSWORD 'prueba123';
postgres=# ALTER USER usuario WITH SUPERUSER CREATEDB CREATEROLE REPLICATION;