{"id":3303,"date":"2014-07-06T11:03:30","date_gmt":"2014-07-06T03:03:30","guid":{"rendered":"http:\/\/rmohan.com\/?p=3303"},"modified":"2014-07-06T11:03:30","modified_gmt":"2014-07-06T03:03:30","slug":"zmapachectl","status":"publish","type":"post","link":"https:\/\/mohan.sg\/?p=3303","title":{"rendered":"zmapachectl"},"content":{"rendered":"<pre style=\"color: #000000; text-transform: none; line-height: normal; text-indent: 0px; letter-spacing: normal; font-style: normal; font-variant: normal; font-weight: normal; word-spacing: 0px; white-space: pre-wrap; -ms-word-wrap: break-word; -webkit-text-stroke-width: 0px;\">#!\/bin\/bash\r\n# \r\n# ***** BEGIN LICENSE BLOCK *****\r\n# Zimbra Collaboration Suite Server\r\n# Copyright (C) 2005, 2007, 2008 Zimbra, Inc.\r\n# \r\n# The contents of this file are subject to the Yahoo! Public License\r\n# Version 1.0 (\"License\"); you may not use this file except in\r\n# compliance with the License.  You may obtain a copy of the License at\r\n# http:\/\/www.zimbra.com\/license.\r\n# \r\n# Software distributed under the License is distributed on an \"AS IS\"\r\n# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.\r\n# ***** END LICENSE BLOCK *****\r\n# \r\n\r\nBASE=\/opt\/zimbra\r\nAPACHECTL=$BASE\/httpd\/bin\/apachectl\r\nCONF=$BASE\/conf\/httpd.conf\r\nPIDFILE=$BASE\/log\/httpd.pid\r\n\r\ncase \"$1\" in\r\n\tstart)\r\n\t\tif [ -f $APACHECTL ]; then\r\n      echo -n \"Starting apache...\"\r\n\t\t\t$APACHECTL -k $1 -f $CONF\r\n      status=$?\r\n      if [ $status = 0 ]; then\r\n        echo \"done.\"\r\n      else\r\n        echo \"failed.\"\r\n      fi\r\n\t\t\texit $status\r\n\t\tfi\r\n\t\texit 0\r\n\t;;\r\n  reload|graceful)\r\n\t\tif [ -f $APACHECTL ]; then\r\n      echo -n \"Reloading apache...\"\r\n\t\t\t$APACHECTL -k graceful -f $CONF\r\n      status=$?\r\n      if [ $status = 0 ]; then\r\n        echo \"done.\"\r\n      else\r\n        echo \"failed.\"\r\n      fi\r\n\t\t\texit $status\r\n\t\tfi\r\n\t\texit 0\r\n\t;;\r\n  restart)\r\n    $0 stop\r\n    sleep 1\r\n    $0 start\r\n  ;;\r\n\tstop)\r\n\t\tif [ -f $PIDFILE ]; then\r\n\t\t\tif [ -f $APACHECTL ]; then\r\n        echo -n \"Stopping apache...\"\r\n\t\t\t\t$APACHECTL -k $1 -f $CONF\r\n        status=$?\r\n        if [ $status = 0 ]; then\r\n          echo \"done.\"\r\n        else\r\n          echo \"failed.\"\r\n        fi\r\n\t\t\t  exit $status\r\n\t\t\tfi\r\n\t\tfi\r\n\t\texit 0\r\n\t;;\r\n\tstatus)\r\n    if [ -f $PIDFILE ]; then\r\n\t\t  pid=$(cat $PIDFILE)\r\n      if [ x\"$pid\" = \"x\" ]; then\r\n        echo \"apache is not running.\"\r\n        exit 1\r\n      fi\r\n    else\r\n      echo \"apache is not running.\"\r\n      exit 1\r\n    fi\r\n\t\tkill -0 $pid\r\n    if [ $? = 0 ]; then\r\n      echo \"apache is running.\"\r\n      exit 0\r\n    else \r\n      echo \"apache is not running.\"\r\n\t\t  exit 1\r\n    fi\r\n\t;;\r\n\t*)\r\n\t\techo \"$0 start|stop|restart|reload|graceful|status\"\r\n\t\texit 1\r\n\t;;\r\nesac<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>#!\/bin\/bash # # ***** BEGIN LICENSE BLOCK ***** # Zimbra Collaboration Suite Server # Copyright (C) 2005, 2007, 2008 Zimbra, Inc. # # The contents of this file are subject to the Yahoo! Public License # Version 1.0 (&#8220;License&#8221;); you may not use this file except in # compliance with the License. You may obtain [&#8230;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[47],"tags":[],"_links":{"self":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts\/3303"}],"collection":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3303"}],"version-history":[{"count":1,"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts\/3303\/revisions"}],"predecessor-version":[{"id":3304,"href":"https:\/\/mohan.sg\/index.php?rest_route=\/wp\/v2\/posts\/3303\/revisions\/3304"}],"wp:attachment":[{"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3303"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3303"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mohan.sg\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3303"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}