Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Permission denied for standalone.sh" : error=13

Tags:

sh

ubuntu

wildfly

I am trying to build a web application with jboss-wildfly 10 application server - maven - jpa - java but I get this error code:

Error running 'UniPortal': Cannot run program "/home/mert/dev/WF HR/bin/standalone.sh" (in directory "/home/mert/dev/WF HR/bin"): error=13, Permission denied

I am using Ubuntu/Gnome 16.04.

Is there any way to solve this problem?

like image 936
Mert Yücel Avatar asked Mar 12 '18 20:03

Mert Yücel


1 Answers

I had this same issue on a Windows machine yesterday. You may need to make standalone.sh executable. Try running this in a terminal:

$ chmod a+x "/home/mert/dev/WF HR/bin/standalone.sh"

This will make the file executable by all.

like image 107
Ben Bynum Avatar answered Oct 11 '22 16:10

Ben Bynum