Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Dirigible/Infrastructure/Update Trial"

Line 6: Line 6:
 
     cd /opt/tomcat/apache-tomcat-7.0.67/bin/
 
     cd /opt/tomcat/apache-tomcat-7.0.67/bin/
 
     sudo -u tomcat ./shutdown.sh
 
     sudo -u tomcat ./shutdown.sh
 +
    ps ef|grep tomcat (kill it if necessary)
 
     cd /opt/tomcat/apache-tomcat-7.0.67/work/
 
     cd /opt/tomcat/apache-tomcat-7.0.67/work/
 
     rm -R Catalina
 
     rm -R Catalina
Line 12: Line 13:
 
     rm -R ROOT
 
     rm -R ROOT
 
     sudo -u tomcat wget http://download.eclipse.org/dirigible/drops/<version>/trial/allinone/ROOT.war
 
     sudo -u tomcat wget http://download.eclipse.org/dirigible/drops/<version>/trial/allinone/ROOT.war
 +
    cd ../bin
 
     sudo -u tomcat ./catalina.sh run <&- &
 
     sudo -u tomcat ./catalina.sh run <&- &
  

Revision as of 13:36, 17 March 2016

Update Trial

Login to Trial VM

   ssh vsacct@dirigible.eclipse.org
   su
   cd /opt/tomcat/apache-tomcat-7.0.67/bin/
   sudo -u tomcat ./shutdown.sh
   ps ef|grep tomcat (kill it if necessary)
   cd /opt/tomcat/apache-tomcat-7.0.67/work/
   rm -R Catalina
   cd /opt/tomcat/apache-tomcat-7.0.67/webapps/
   rm ROOT.war
   rm -R ROOT
   sudo -u tomcat wget http://download.eclipse.org/dirigible/drops/<version>/trial/allinone/ROOT.war
   cd ../bin
   sudo -u tomcat ./catalina.sh run <&- &

Forwarding

Usually this needs to be executed only on new and clean VM:

   iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080
   iptables -t nat -I OUTPUT -p tcp -d 127.0.0.1 --dport 80 -j REDIRECT --to-ports 8080

Back to the top