Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tomcat error while running spring mvc web application on intelliJ 14

I have recently set up Spring MVC on intelliJ but whenever I run the project using Tomcat server, it gives the following error:

Error running Tomcat 8.0.171: Cannot run program "/Library/Tomcat/bin/catalina.sh" (in directory "/Library/Tomcat/bin"): error=13, Permission denied

The error seems to me that it has to do with permission issue.

Please help me.

Thanks in advance..

like image 393
princeexpedition Avatar asked Sep 03 '25 08:09

princeexpedition


1 Answers

You should chmod it.

chmod a+x /Library/Tomcat/bin/catalina.sh
like image 200
Quy Le Avatar answered Sep 05 '25 00:09

Quy Le