Hi, I install Joget on Debian 6 and can get Joget running in the console window. How to change the default port 8080 to 80? and how to run Tomcat in background, because I don't have GUI desktop.

Thanks.

  • No labels

1 Comment

  1. OK I found the solution:

    Change the default 8080 port:

    In Joget directory, modify the following file "./apache-tomcat-6.0.18/conf/server.xml"

    change this line

     <Connector URIEncoding="UTF-8" port"8080"
    

    and this

     <Connector executor="tomcatThreadPool" port="8080"
    

    Run in background:

    # nohup ./tomcat6.sh run &
    

    Output of console windows is store in nohup.out.

    Now you can close the console window.