Postgresql server start- sudo service postgresql start
Commands for creating the user, database and setting the user password
- sudo -i -u postgres
- psql
- CREATE USER admin;
- ALTER USER admin WITH PASSWORD 'helloworld';
- CREATE DATABASE alumni_portal OWNER admin;
CREATING SUPER USER- python manage.py createsuperuser