Issue
I am new to IntelliJ IDEA Ultimate edition . I have developed a Grails project in it . Can anyone tell me the steps to deploy this project in a remote Apache Tomcat server ?
Solution
you have to build a .war file of your project.
grails war
(The .war file is in your Project path.)
Now you can deploy the .war file on your remote tomcat server. You copy the File in the webapps
folder, then you can access on it: http://localhost:8080/nameofyourwarfile
If you have a problem you can check the log file: logs/catalina.out
http://docs.grails.org/3.0.17/guide/deployment.html
Answered By - Stefan Greil Answer Checked By - Candace Johnson (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.