Unable to create the directory error

后端 未结 5 1186
[愿得一人]
[愿得一人] 2020-12-10 04:34

I created a new subdomain and uploaded the WAR file into its directory, but the server returns following error.

java.io.IOException: Unable to create the dir         


        
5条回答
  •  南方客
    南方客 (楼主)
    2020-12-10 05:10

    seems like you need to

    give group full access write to the WAR directory

    sudo chmod 775 /home/jack/public_html/WAR/
    

    then change the group of the directory to tomcat

    chown -R jack:tomcat /home/jack/public_html/WAR/
    

提交回复
热议问题