초기화 스크립트의 이름 지정 프로세스

초기화 스크립트의 이름 지정 프로세스

postgresql서버보다 먼저 시작해야 하는 서비스를 시작하는 init 스크립트를 작성하려고 합니다. postgresql초기화 헤더는 다음과 같습니다 .


#!/bin/sh
#
# postgresql    This is the init script for starting up the PostgreSQL
#               server.
#
# chkconfig: - 64 36
# description: PostgreSQL database server.
# processname: postmaster
# pidfile: /var/run/postmaster-9.1.pid

postgresql-9.1초기화 스크립트의 헤더에서 (init 스크립트 파일 이름) 또는 ( init 스크립트 postmaster때문 )로 postgresql을 어떻게 참조해야 합니까 ?processnamepostgresql

관련 정보