Welcome, guest. Log in.

CentOS

Jira linux start stop script

Have you ever needed a jira startup script to take care that your confluence get's autostarted?

Jira startup script:


#!/bin/bash
# Jira startup script
# Script provided by comdivision consulting GmbH (http://www.comdivision.com)
#chkconfig: 2345 80 05
#description: Jira

CATALINA_HOME=/opt/atlassian-jira-enterprise-4.0.1-standalone

start() {
echo "Starting Jira: "
$CATALINA_HOME/bin/startup.sh
echo "done."
}
stop() {
echo "Shutting down Jira: "
$CATALINA_HOME/bin/shutdown.sh
echo "done."
}

case "$1" in Read more »

Nagios Client Install on Linux CentOS

Packages you will need:
gcc
openssl-devel

  • Create an install dir: mkdir /install
  • Download NRPE: wget http://prdownloads.sourceforge.net/sourceforge/nagios/nrpe-2.12.tar.gz
  • tar -zxvf nrpe-2.12.tar.gz
  • cd nrpe-2.12
  • ./configure should end with an output like this:

    *** Configuration summary for nrpe 2.12 03-10-2008 ***:

    General Options:
    -------------------------
    NRPE port: 5666
    NRPE user: nagios
    NRPE group: nagios
    Nagios user: nagios
    Nagios group: nagios

  • Syndicate content