SourceForge Prod : startup / shutdown services on cherry

  • services are started with a

sudo su - -c "service <servicename> start"

  • or stopped with a with a "stop" command

sudo su - -c "service <servicename> stop"

  • Below are the services that need to be running on cherry.cit.cornell.edu
cherry:/_start_stop_instructions.txt
###--------------------------------------------------
#
#    SourceForge & Confluence stop/start instructions: 
#
#      docs: https://confluence.cornell.edu/display/COLLABTOOLS/Collaboration+Tools+Support+Manual
#
###--------------------------------------------------
###--------------------------------------------------

# Apache stop start
sudo su - -c "service httpd stop"
sudo su - -c "service httpd start"

##--------------------------------------------------
#
# SourceForge 
#
# ssh cherry
#
#  Shutdown 

sudo su - -c "service collabnet stop"


#  visually verify it comes down gracefully; 
#
#     ps -ef | grep java to make sure that the SF processes are down; there should be 2 processes still up: Confluence tomcat and our collab-utils tomcat)


#
#  Startup: 

sudo su - -c "service collabnet start"


# (visually verify it comes up gracefully; this one will take several minutes; it is a foreground process, so don't hit Ctrl-C, just wait)

#
##--------------------------------------------------
  • No labels