Hey...
Would someone please explain the steps I need to take to restart the media server on Chat+.... Nathan installed it and I am clueless about the whole thing..
I get 300 error when attempting to access
Thanks
Hey...
Would someone please explain the steps I need to take to restart the media server on Chat+.... Nathan installed it and I am clueless about the whole thing.. I get 300 error when attempting to access
Thanks |
You might want to read the setup section on Github. https://github.com/boonex/dolphin.pro/wiki/ChatPlus-Installation-Instructions-(Ubuntu-with-Apache)
There you will learn the basics of how it was setup and the startup procedures. I run my own chat+ server. If you need further help let me know. ManOfTeal.COM a Proud UNA site, six years running strong! |
Hi...
Ok thanks... if I am reading it correctly the start.sh execute should start it...
What I receive is
Home/chat/chat/start.sh: line 11 chat _plus.log: permissions denied
On Chat plus log there is no line 11
Only 2 entries Minuptime not set defaulting to 1000ms Spinsleeptime not set your script will exit if it does not stay up for at least 1000ms
Do i need to run stop.sh then try to start.. Permission on start.sh is 755 i believe that is correct |
Hello tbd!
Seems you need to set the correct permissions (666) for chat _plus.log file. |
or make sure you are logged in as the root user when you issue the start command. or find out what user owns the file start.sh... https://dolphin-techs.com - Skype: Dolphin Techs |
If you were hosting with Zarconia, Boonex has taken on those accounts so send an email to support@boonex.com and they will take care of it. Geeks, making the world a better place |
This is the command to start my instance. "sudo sh start.sh" That will start it up, "sudo sh stop.sh" will shut it down. Not sure how you've set up your start.sh file. This is my start.sh file
#!/bin/sh
export ROOT_URL=https://chat.manofteal.com:3000 export MONGO_URL=mongodb://localhost:27017/mot27 export PORT=3000 export ADMIN_EMAIL=youraddress@email.com export ADMIN_PASS=yourpassword
LOG=chat_plus.log
node main.js 2>&1 >$LOG &
ManOfTeal.COM a Proud UNA site, six years running strong! |