Permittion Denied whilst executing '.sh'

50 Views Asked by At

I have went and installed a piece of PHP Scripts for (mobile minecraft server software) and I went to execute the file 'start.sh' with the command; './start.sh' When I pressed enter the SSH Client (Putty) it came and said 'Permittion Denied' I have made the file permissions open with cmod. I am not sure what is wrong.

Thanks in advance!

1

There are 1 best solutions below

0
On

The line you posted in your comment means that the owner can read and write, the owner's group can read, and everyone else can read.

Do

chmod +x start.sh

This will add the ability to execute as well as read and write.