How to deploy war files into cPanel and remove the project name?

后端 未结 6 1955
没有蜡笔的小新
没有蜡笔的小新 2021-01-24 00:23

I need to run my Java application on cPanel. I have successfully installed Tomcat,

I can run my application by copying war file into my

6条回答
  •  不知归路
    2021-01-24 01:10

    According to one cpanel hosting service command prompt access is generally turned off for cpanel for security reasons and you have to ask for it specifically. If you have this access you can login and run the unzip command (after uploading the war file using FileZilla or similar).

    According to cpanel if you don't have command prompt access, you can upload the war to your public_html directory, but before doing this you need to change the apache config and add a "JkMount" for this (see the one with "appname" below).

    
      JkMount /*.jsp ajp13
      JkMount /servlet/* ajp13
      JkMount /servlets/* ajp13
      JkMount /*.do ajp13
      JkMount /appname/* ajp13
    
    

    Except of course you put "your app name" instead of appname. This change will instruct apache to redirect calls to the top-level url (ie mydomain.com/appname) to your Tomcat instance (ie mydomain.com:8080/appname). After you have uploaded the war and changed the config, you have to restart apache.

    But we said we didn't have ssh access, so how do we modify that file. according to this forum we can edit the /home/username/public_html/.htaccess or just /public_html/.htaccess and add these lines:

    SetHandler jakarta-servlet
    SetEnv JK_WORKER_NAME ajp13
    

    Now, apache will re-direct to tomcat for mydomain.com/appname instead of mydomain.com:8080/appname. How do we get it to work from just mydomain.com? I simply don't know the answer to this. As far as I know using the usual trick of changing the war file to ROOT.war does not work in cpanel.

提交回复
热议问题