I re-set everything up, using port 3000 and page doesnt load, and my log shows this...
events.js:72
throw er; // Unhandled 'error' event
^
Error: listen EADDRINUSE
at errnoException (net.js:905:11)
at Server._listen2 (net.js:1043:14)
at listen (net.js:1065:10)
at net.js:1147:9
at dns.js:72:18
at process._tickDomainCallback (node.js:492:13)
my example-start.sh is as follows:
#!/bin/sh
export ROOT_URL=http://world-unity.net:3000/
export MONGO_URL=mongodb://localhost:27017/rocketchat
export ADMIN_EMAIL=admin@world-unity.net
export ADMIN_PASS=****
export PORT=3000
LOG=chat_plus.log
node main.js 2>&1 >$LOG &
since port 3000 didnt load, I used same config except I changed port to 3005. got page to load but does not accept admin email and pass, gives me user not found or incorrect password.
EDIT: I will be unable to use port 3000 as I already have a service using that port in PLESK control panel.