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"

m
m
Line 22: Line 22:
 
     iptables -t nat -I OUTPUT -p tcp -d 127.0.0.1 --dport 80 -j REDIRECT --to-ports 8080
 
     iptables -t nat -I OUTPUT -p tcp -d 127.0.0.1 --dport 80 -j REDIRECT --to-ports 8080
  
 +
 +
==== Count of Users ====
 +
 +
    cd /opt/tomcat/apache-tomcat-7.0.67/bin/dirigible_local/root/db/dirigible/users
 +
    ls -alh | grep -c ^d
  
 
[[Category:Dirigible]]
 
[[Category:Dirigible]]

Revision as of 08:55, 4 May 2017

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


Count of Users

   cd /opt/tomcat/apache-tomcat-7.0.67/bin/dirigible_local/root/db/dirigible/users
   ls -alh | grep -c ^d

Back to the top