Created
August 26, 2024 22:20
-
-
Save duzun/1d80c2e7784464e06263c4c02cbe5ac5 to your computer and use it in GitHub Desktop.
1Cv8.3 service init script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: srv1cv83 | |
# Required-Start: $remote_fs $network $syslog $named | |
# Required-Stop: $remote_fs $network $syslog $named | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Description: 1C:Enterprise 83 server. | |
### END INIT INFO | |
NAME=srv1cv83 | |
SCRIPTNAME="/etc/init.d/$NAME" | |
DESC="Starts and stops the 1C:Enterprise daemons" | |
#------------------------------------------------------------ | |
# 1C:Enterprise server configuration parameters | |
#------------------------------------------------------------ | |
# 1C:Enterprise server keytab file. | |
# default - usr1cv83.keytab file in 1C:Enterprise server | |
# installation directory | |
# | |
#SRV1CV8_KEYTAB= | |
# Number of the cluster port created by default during first | |
# launch of ragent | |
# | |
# default - 1540 | |
# | |
#SRV1CV8_PORT= | |
# Number of cluster agent main port. This port is used by the | |
# cluster console to address the central server. Cluster agent | |
# port is also specified as the IP port of the working server. | |
# | |
# default - 1541 | |
# | |
#SRV1CV8_REGPORT= | |
# Port range for connection pool | |
# example values: | |
# 45:49 | |
# 45:67,70:72,77:90 | |
# | |
# default - 1560:1691 | |
# | |
#SRV1CV8_RANGE= | |
# 1C:Enterprise server configuration debug mode | |
# 0 - default - off | |
# 1 - on | |
# | |
#SRV1CV8_DEBUG= | |
# Path to directory with claster data | |
# default - $HOMEDIR/.1cv83/1C/1Cv83 | |
# | |
#SRV1CV8_DATA= | |
# Security level: | |
# 0 - default - unprotected connections | |
# 1 - protected connections only for the time of user | |
# authentication | |
# 2 - permanently protected connections | |
# | |
#SRV1CV8_SECLEV= | |
# Check period for connection loss detector, milliseconds | |
# default - 1000 | |
# | |
#SRV1CV8_PINGPERIOD= | |
# Response timeout for connection loss detector, milliseconds | |
# default - 5000 | |
# | |
#SRV1CV8_PINGTIMEOUT= | |
#------------------------------------------------------------ | |
# end of config | |
#------------------------------------------------------------ | |
######################################### | |
########### init starts here ############ | |
######################################### | |
# chkconfig: 35 74 36 | |
# description: Starts and stops the 1C:Enterprise daemons | |
# Read configuration variable file if it is present | |
[ -r "/etc/default/$NAME" ] && . "/etc/default/$NAME" | |
#------------------------------------------------------------ | |
# global macros. generated by install script | |
#------------------------------------------------------------ | |
G_CONF_STYLE=deb | |
G_VER_ARCH=x86_64 | |
G_VER_MAJOR=8 | |
G_VER_MINOR=3 | |
G_VER_BUILD=18 | |
G_VER_RELEASE=2236 | |
G_BINDIR="/opt/1cv8/current" | |
# You have to have a link like `ln -s /opt/1cv8/x86_64/8.3.18.1208 /opt/1cv8/current` | |
G_BINDIR_REAL=$(realpath "$G_BINDIR") | |
if [ -n "$G_BINDIR_REAL" ] && [ "$G_BINDIR_REAL" != "$G_BINDIR" ]; then | |
G_VER=${G_BINDIR_REAL##*/} | |
if [ -n "$G_VER" ]; then | |
_G_VER_RELEASE=${G_VER##*.} | |
G_VER=${G_VER%.*} | |
if [ -n "$G_VER" ]; then | |
_G_VER_BUILD=${G_VER##*.} | |
G_VER=${G_VER%.*} | |
if [ -n "$G_VER" ]; then | |
_G_VER_MINOR=${G_VER##*.} | |
G_VER=${G_VER%.*} | |
if [ -n "$G_VER" ]; then | |
G_VER_MAJOR=$G_VER | |
G_VER_MINOR=$_G_VER_MINOR | |
G_VER_BUILD=$_G_VER_BUILD | |
G_VER_RELEASE=$_G_VER_RELEASE | |
G_BINDIR=$G_BINDIR_REAL | |
# echo "ver: $G_VER_MAJOR.$G_VER_MINOR.$G_VER_BUILD.$G_VER_RELEASE" | |
fi | |
fi | |
fi | |
fi | |
fi | |
#------------------------------------------------------------ | |
G_VER_SHORT=${G_VER_MAJOR}.${G_VER_MINOR} | |
G_TITLE="1C:Enterprise ${G_VER_SHORT} server" | |
#------------------------------------------------------------ | |
# this values can be passed from outside, so perform "z-check" | |
#------------------------------------------------------------ | |
[ -z "$SRV1CV8_USER" ] && SRV1CV8_USER=usr1cv8 | |
[ -z "$SRV1CV8_BINDIR" ] && SRV1CV8_BINDIR="$G_BINDIR" | |
[ -z "$SRV1CV8_PIDFILE" ] && SRV1CV8_PIDFILE="/run/srv1cv${G_VER_MAJOR}${G_VER_MINOR}.pid" | |
[ -z "$SRV1CV8_KEYTAB" ] && SRV1CV8_KEYTAB="$SRV1CV8_BINDIR/$SRV1CV8_USER.keytab" | |
[ -z "$SRV1CV8_WAITSTART" ] && SRV1CV8_WAITSTART=5 | |
[ -z "$SRV1CV8_WAITSTOP" ] && SRV1CV8_WAITSTOP=5 | |
#------------------------------------------------------------ | |
# builds ragent's command line from configuration parameters | |
#------------------------------------------------------------ | |
function buildCommandLine() { | |
local cmdline="$SRV1CV8_BINDIR/ragent -daemon" | |
[ -n "$SRV1CV8_PORT" ] && cmdline="$cmdline -port $SRV1CV8_PORT" | |
[ -n "$SRV1CV8_REGPORT" ] && cmdline="$cmdline -regport $SRV1CV8_REGPORT" | |
[ -n "$SRV1CV8_DATA" ] && cmdline="$cmdline -d \"$SRV1CV8_DATA\"" | |
[ -n "$SRV1CV8_RANGE" ] && cmdline="$cmdline -range $SRV1CV8_RANGE" | |
[ -n "$SRV1CV8_SECLEV" ] && cmdline="$cmdline -seclev $SRV1CV8_SECLEV" | |
[ -n "$SRV1CV8_PINGPERIOD" ] && cmdline="$cmdline -pingPeriod $SRV1CV8_PINGPERIOD" | |
[ -n "$SRV1CV8_PINGTIMEOUT" ] && cmdline="$cmdline -pingTimeout $SRV1CV8_PINGTIMEOUT" | |
[ "x$SRV1CV8_DEBUG" == "x1" ] && cmdline="$cmdline -debug" | |
echo $cmdline | |
} | |
#------------------------------------------------------------ | |
# checks if process with passed pid exists | |
#------------------------------------------------------------ | |
function checkpid() { | |
ps -p $* > /dev/null | |
} | |
#------------------------------------------------------------ | |
# waits SRV1CV8_WAITSTOP seconds for process termination, | |
# then kills it | |
#------------------------------------------------------------ | |
function delayedkill() { | |
local mypid=$1 | |
local delay=$2 | |
kill $mypid 2>/dev/null | |
checkpid $mypid && sleep $delay || return 0 | |
if checkpid $mypid; then | |
kill -9 $mypid | |
logWarning "Process refused to die... So it was killed. May be you should increase SRV1CV8_WAITSTOP variable?"; | |
fi | |
return 0 | |
} | |
#------------------------------------------------------------ | |
# extracts specified param from value from given command-line | |
#------------------------------------------------------------ | |
function extractParam() { | |
local param=$1 | |
shift | |
local tmp=$* | |
if [ -n "$*" ]; then | |
if [ ${tmp:0:1} == "-" ]; then | |
tmp=${tmp:1} | |
local val=${tmp#*$param } | |
# if old and new strings are equal | |
# we don't have needed param in cmdline | |
# so return | |
[ "$val" == "$tmp" ] && return; | |
val=${val%% -*} | |
echo "$val" | |
fi | |
fi | |
} | |
#------------------------------------------------------------ | |
# call it when something fails | |
#------------------------------------------------------------ | |
function failure() { | |
[ "$BOOTUP" != "verbose" -a -z "$LSB" ] && echo FAILED | |
return 0 | |
} | |
#------------------------------------------------------------ | |
# extracts data dir from ragent's command line or (if it's | |
# empty), builds it from users's home dir | |
#------------------------------------------------------------ | |
function getDataDir() { | |
local cmdline=`getRagentRealCmdLine` | |
local datadir="$SRV1CV8_DATA" | |
[ -n "$cmdline" ] && datadir=`extractParam d $cmdline` | |
if [ -z "$datadir" ]; then | |
local line=`grep ^$SRV1CV8_USER: /etc/passwd` | |
local homedir=${line#*:*:*:*:*:} | |
homedir=${homedir%:*} | |
datadir="$homedir/.1cv${G_VER_MAJOR}${G_VER_MINOR}/1C/1Cv${G_VER_MAJOR}${G_VER_MINOR}" | |
fi | |
echo $datadir | |
} | |
#------------------------------------------------------------ | |
# returns ragent configuration debug flag | |
#------------------------------------------------------------ | |
function getDebugStatus() { | |
local cmdline=`getRagentRealCmdLine` | |
local debugFlag="$SRV1CV8_DEBUG" | |
echo "$cmdline" | grep "\-debug" >/dev/null && debugFlag="1" | |
[ -n "$debugFlag" ] && echo $debugFlag || echo "0" | |
} | |
#------------------------------------------------------------ | |
# returns ragent port range | |
#------------------------------------------------------------ | |
function getPortRange() { | |
local cmdline=`getRagentRealCmdLine` | |
local range="$SRV1CV8_RANGE" | |
[ -n "$cmdline" ] && range=`extractParam range $cmdline` | |
[ -n "$range" ] && echo $range || echo 1560:1591 | |
} | |
#------------------------------------------------------------ | |
# returns ragent main port | |
#------------------------------------------------------------ | |
function getRagentPort() { | |
local cmdline=`getRagentRealCmdLine` | |
local port="$SRV1CV8_PORT" | |
[ -n "$cmdline" ] && port=`extractParam port $cmdline` | |
[ -n "$port" ] && echo $port || echo 1540 | |
} | |
#------------------------------------------------------------ | |
# get's running ragent command-line | |
#------------------------------------------------------------ | |
function getRagentRealCmdLine() { | |
local cmdline=`buildCommandLine` | |
local mypid=`getRagentPid "$SRV1CV8_USER" "$cmdline"` | |
local result="" | |
[ -n "$mypid" ] && result=`ps --pid $mypid -o cmd= | sed -e "s/.*-daemon//"` | |
echo "$result" | |
} | |
#------------------------------------------------------------ | |
# tries to get pid of ragent process, started by this script | |
#------------------------------------------------------------ | |
function getRagentPid() { | |
local user=$1 | |
shift | |
# remove quotes in passed CMDLINE because | |
# command line of process doesn't contains'em | |
# even if they were passed. | |
local cmdline=`echo $* | sed -e "s/\"//g"` | |
ps -C ragent -opid=,user=,cmd= | while read curline; do | |
local curPID=`echo $curline | sed -e "s/ .*//"` | |
local curline=`echo $curline | sed -e "s/$curPID //"` | |
local curUSR=`echo $curline | sed -e "s/ .*//"` | |
local curCMD=`echo $curline | sed -e "s/$curUSR //"` | |
if [ "$curCMD" == "$cmdline" ] && [ "$curUSR" == "$user" ]; then | |
echo $curPID | |
fi | |
done | |
} | |
#------------------------------------------------------------ | |
# returns ragent reg port | |
#------------------------------------------------------------ | |
function getRegPort() { | |
local cmdline=`getRagentRealCmdLine` | |
local regport="$SRV1CV8_REGPORT" | |
[ -n "$cmdline" ] && regport=`extractParam regport $cmdline` | |
[ -n "$regport" ] && echo $regport || echo 1541 | |
} | |
#------------------------------------------------------------ | |
# returns name of script | |
#------------------------------------------------------------ | |
function getScriptName() { | |
local myname=`basename $0` | |
[ ${myname:0:1} = "S" -o ${myname:0:1} = "K" ] && myname=${myname:3} | |
echo $myname | |
} | |
#------------------------------------------------------------ | |
# returns ragent security level | |
#------------------------------------------------------------ | |
function getSecLevel() { | |
local cmdline=`getRagentRealCmdLine` | |
local seclev="$SRV1CV8_SECLEV" | |
[ -n "$cmdline" ] && seclev=`extractParam seclev $cmdline` | |
[ -n "$seclev" ] && echo $seclev || echo 0 | |
} | |
#------------------------------------------------------------ | |
# returns ragent ping period | |
#------------------------------------------------------------ | |
function getPingPeriod() { | |
local cmdline=`getRagentRealCmdLine` | |
local pingPeriod="$SRV1CV8_PINGPERIOD" | |
[ -n "$cmdline" ] && pingPeriod=`extractParam pingPeriod $cmdline` | |
[ -n "$pingPeriod" ] && echo $pingPeriod || echo 1000 | |
} | |
#------------------------------------------------------------ | |
# returns ragent ping timeout | |
#------------------------------------------------------------ | |
function getPingTimeout() { | |
local cmdline=`getRagentRealCmdLine` | |
local pingTimeout="$SRV1CV8_PINGTIMEOUT" | |
[ -n "$cmdline" ] && pingTimeout=`extractParam pingTimeout $cmdline` | |
[ -n "$pingTimeout" ] && echo $pingTimeout || echo 5000 | |
} | |
#------------------------------------------------------------ | |
# displays useful information about ragent | |
#------------------------------------------------------------ | |
function info() { | |
echo "$G_TITLE info:" | |
echo -n " Data dir: " && getDataDir | |
echo -n " Main port: " && getRagentPort | |
echo -n " RegPort: " && getRegPort | |
echo -n " Port range: " && getPortRange | |
echo -n " Debug mode: " && getDebugStatus | |
echo -n " Sec. level: " && getSecLevel | |
echo -n " Ping period: " && getPingPeriod | |
echo -n "Ping timeout: " && getPingTimeout | |
return 0 | |
} | |
#------------------------------------------------------------ | |
# check if our ragent running | |
#------------------------------------------------------------ | |
function isRagentRunning() { | |
local mypid=`getRagentPid $*` | |
[ -n "$mypid" ] && checkpid "$mypid" | |
} | |
#------------------------------------------------------------ | |
# talks to stderr, and then logs failure to stdout | |
#------------------------------------------------------------ | |
function logError() { | |
echo -n " Error: " >&2 | |
echo $* >&2 | |
failure | |
} | |
#------------------------------------------------------------ | |
# put some additional non-critical debug info to stderr | |
#------------------------------------------------------------ | |
function logWarning() { | |
echo -n "Warning: " >&2 | |
echo $* >&2 | |
} | |
#------------------------------------------------------------ | |
# restarts server | |
#------------------------------------------------------------ | |
function restart() { | |
stop | |
start | |
} | |
#------------------------------------------------------------ | |
# displays command-line help | |
#------------------------------------------------------------ | |
function showUsage() { | |
local myname=$1 | |
echo "Usage: $myname [-c config] start|stop|restart|force-reload|status|info" | |
} | |
#------------------------------------------------------------ | |
# starts ragent | |
#------------------------------------------------------------ | |
function start() { | |
echo -n "Starting $G_TITLE: " | |
if [ -n "$SRV1CV8_DATA" ]; then | |
if [ -e "$SRV1CV8_DATA" ]; then | |
[ ! -d "$SRV1CV8_DATA" ] && { logError "SRV1CV8_DATA \"$SRV1CV8_DATA\" is a file, not a directory!"; return 0; } | |
fi | |
fi | |
[ ! -f "$SRV1CV8_BINDIR/ragent" ] && { logError "ragent file does not exists!" ; return 0; } | |
[ ! -x "$SRV1CV8_BINDIR/ragent" ] && { logError "ragent file is not executable!"; return 0; } | |
local cmd2run=`buildCommandLine` | |
if isRagentRunning "$SRV1CV8_USER" "$cmd2run"; then | |
logWarning "already started!"; | |
else | |
# See /etc/default/srv1cv83 | |
local cge= | |
# if [ -d /sys/fs/cgroup/memory/app/pm2 ] \ | |
# && [ -d /sys/fs/cgroup/cpu/app/pm2 ] \ | |
# && [ -d /sys/fs/cgroup/net_prio/app ] \ | |
# && cge=$(command -v cgexec); | |
# then | |
# cge="$cge -g memory,cpu:app/1c -g net_prio:app" | |
# fi | |
# run our process | |
if [ -z "$SRV1CV8_USER" ]; then | |
export KRB5_KTNAME="$SRV1CV8_KEYTAB" | |
$cge $cmd2run | |
else | |
if [ -n "$cge" ]; then | |
su -s /bin/bash - "$SRV1CV8_USER" -c "KRB5_KTNAME=\"$SRV1CV8_KEYTAB\" $cge $cmd2run" | |
else | |
start-stop-daemon --start --chuid "$SRV1CV8_USER" --oknodo --pidfile "$SRV1CV8_PIDFILE" --start --exec /usr/bin/env "KRB5_KTNAME=\"$SRV1CV8_KEYTAB\"" "$SRV1CV8_BINDIR/ragent" -- "-daemon" | |
fi | |
fi | |
sleep $SRV1CV8_WAITSTART # wait a bit before check | |
! isRagentRunning "$SRV1CV8_USER" "$cmd2run" && { logError "service failed to start!"; return 0; } | |
# check if pidfile exists and remove it if neccessary | |
[ -f "$SRV1CV8_PIDFILE" ] && logWarning "pid file existed on server start. it can mean that last run failed..." | |
fi | |
local mypid=`getRagentPid $SRV1CV8_USER $cmd2run` | |
echo ${mypid} > "$SRV1CV8_PIDFILE" | |
success | |
return 0 | |
} | |
#------------------------------------------------------------ | |
# displays ragent status | |
#------------------------------------------------------------ | |
function status() { | |
echo "$G_TITLE status:" | |
echo -n "Init script: " | |
if [ -f "$SRV1CV8_PIDFILE" ]; then | |
echo STARTED. | |
local cmd2run=`buildCommandLine` | |
echo -n " Ragent: " | |
! isRagentRunning "$SRV1CV8_USER" "$cmd2run" && echo -n "NOT " | |
echo "RUNNING." | |
else | |
echo NOT STARTED. | |
fi | |
return 0 | |
} | |
#------------------------------------------------------------ | |
# stops ragent | |
#------------------------------------------------------------ | |
function stop() { | |
echo -n "Stopping $G_TITLE: " | |
[ -f "$SRV1CV8_PIDFILE" ] && rm "$SRV1CV8_PIDFILE" | |
local cmd2run=`buildCommandLine` | |
if isRagentRunning "$SRV1CV8_USER" "$cmd2run"; then | |
mypid=`getRagentPid $SRV1CV8_USER $cmd2run` | |
if [ -n "$mypid" ]; then | |
local childpids=`ps --ppid ${mypid} -o pid=` | |
delayedkill $mypid $SRV1CV8_WAITSTOP | |
for childpid in $childpids; do | |
delayedkill $childpid $SRV1CV8_WAITSTOP | |
done | |
fi | |
else | |
logWarning "server not running!" | |
fi | |
success | |
return | |
} | |
#------------------------------------------------------------ | |
# functions says something succeded | |
#------------------------------------------------------------ | |
function success() { | |
[ "$BOOTUP" != "verbose" -a -z "$LSB" ] && echo OK | |
return 0 | |
} | |
#------------------------------------------------------------ | |
# script's main function | |
#------------------------------------------------------------ | |
function main() { | |
local myname=`getScriptName` | |
local dirname=`dirname $0` | |
local realdir=$(cd "$dirname"; pwd) | |
# check if someone passed different config through command-line option | |
local configFile= | |
[ "$1" == "-c" ] && { configFile="$2"; shift 2; } | |
local action= | |
case $1 in | |
'') | |
showUsage $myname | |
return 1 | |
;; | |
--help) | |
showUsage $myname | |
return 0 | |
;; | |
info) | |
action=info | |
;; | |
restart) | |
action=restart | |
;; | |
force-reload) | |
action=restart | |
;; | |
start) | |
action=start | |
;; | |
status) | |
action=status | |
;; | |
stop) | |
action=stop | |
;; | |
*) | |
showUsage $myname | |
return 1; | |
;; | |
esac | |
# check for config file existence | |
if [ -z "$configFile" ]; then | |
configFile="/etc/sysconfig/$myname" | |
[ -e "$configFile" ] && source "$configFile" | |
else | |
[ -f "$configFile" ] && source "$configFile" | |
fi | |
$action | |
} | |
#invoke function main | |
main $* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=1C:Enterprise Server 8.3 (%I) | |
Requires=network.target | |
[Service] | |
Type=simple | |
User=usr1cv8 | |
Group=grp1cv8 | |
# Path to directory with claster data | |
Environment=SRV1CV8_DATA=/home/usr1cv8/.1cv8/1C/1cv8/ | |
# Number of the cluster port created by default during first | |
# launch of ragent | |
Environment=SRV1CV8_PORT=1540 | |
# Number of cluster agent main port. This port is used by the | |
# cluster console to address the central server. Cluster agent | |
# port is also specified as the IP port of the working server. | |
Environment=SRV1CV8_REGPORT=1541 | |
# Port range for connection pool | |
Environment=SRV1CV8_RANGE=1560:1591 | |
# Security level: | |
# 0 - unprotected connections | |
# 1 - protected connections only for the time of user | |
# authentication | |
# 2 - permanently protected connections | |
Environment=SRV1CV8_SECLEV=0 | |
# 1C:Enterprise server configuration debug mode | |
# blank - default - debug mode is off | |
# -debug - debug mode is on | |
# | |
Environment=SRV1CV8_DEBUG= | |
# Check period for connection loss detector, milliseconds | |
Environment=SRV1CV8_PING_PERIOD=1000 | |
# Response timeout for connection loss detector, milliseconds | |
Environment=SRV1CV8_PING_TIMEOUT=5000 | |
# 1C:Enterprise server keytab file. | |
# default - usr1cv83.keytab file in 1C:Enterprise server | |
# installation directory | |
Environment=KRB5_KTNAME=/opt/1cv8/x86_64/%I/usr1cv8.keytab | |
ExecStart=/bin/sh -c "/opt/1cv8/x86_64/%I/ragent -d ${SRV1CV8_DATA} -port ${SRV1CV8_PORT} -regport ${SRV1CV8_REGPORT} -range ${SRV1CV8_RANGE} \ | |
-seclev ${SRV1CV8_SECLEV} -pingPeriod ${SRV1CV8_PING_PERIOD} -pingTimeout ${SRV1CV8_PING_TIMEOUT} ${SRV1CV8_DEBUG}" | |
Restart=always | |
RestartSec=5 | |
PrivateTmp=yes | |
[Install] | |
DefaultInstance=current | |
WantedBy=multi-user.target | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See https://youtu.be/gqiTIdmdz2M for how to install 1C:Enterprise 8.3 on Debian server.