- Joined
- May 23, 2010
- Messages
- 116
- Reaction score
- 1
Thats why you should always back up your main server files before copying it over. Also looks like your missing a file or its corrputed from your db.
[b]# cd /home/BOI/DBServer/db
# dos2unix create-database.sh[/b]
It's telling you that because those files are made in DOS (for whatever reason) and they need to be converted to UNIX for Linux to be able to read them correctly. You can do this by opening a terminal in Linux, cd to the location of file and do the conversion that way. The commands will look something like this example:
Code:[b]# cd /home/BOI/DBServer/db # dos2unix create-database.sh[/b]
That is because some parts of your server are still running from the last time you did ./start.sh and since they are still running, when you try to run it again you get the port in use error like you have.
Restart your Linux computer and try again.