Using databases with WSL https://docs.microsoft.com/en-us/windows/wsl/tutorials/wsl-database
NodeJS: https://docs.microsoft.com/en-us/windows/nodejs/setup-on-wsl2
Redis: https://redis.io/topics/quickstart
Docker: https://docs.docker.com/docker-for-windows/wsl/
To start MongoDB, run mongostart in Ubuntu. This will start up MongoDB and you can access it from Windows using MongoDB Compass.
To stop MongoDB, run mongostop.
To check on the Mongo status, run mongostatus
After installing PostgreSQL, there's one more step to make it fully accessible. You need to update your pg_hba.conf file (/etc/postgresql/12/main/pg_hba.conf*). You need to change any line that has peer from
local all postgres peer
to
local all postgres md5
Then restart your session and/or restart PostgreSQL
To start Postgres, run pgstart
To stop Postgres, run pgstop
To access Postgres CL, run runpg