It seems that even when the port was configured in postgresql.conf to be 5433, it was still running in 5432. After I reconfigured the port to be 5432, the steps are working fine already.
Or, you can say "psql -p 5433" - that can help you connect successfully.
Good to know that everything is working fine. When you run "psql" without any options, it would by default take the port as 5432 or whatever port you have assigned to PGPORT environment variable. If you want to connect to PostgreSQL with a different port and PGPORT is not configured, then you need to exclusively mention the port with -p option.
I'm testing the scenario of moving the xlog folder to a fast pair of disk. This was the steps I followed;
1. create new mountpoint with the correct permissions
2. Shutdown DB
3. Create softlink from new mountpoint to $PG_DATA/pg_xlog
4. Startup DB
If I understand here correctly, you want to move $PGDATA/pg_xlog to "/fast/disk/pg_xlog" directory.
If I want to implement the same on my local machine of moving of pg_xlog to other directory (in your case other mount point). I will follow below steps: