SAP Router

Aus XccesS Wiki
Version vom 14. März 2023, 22:46 Uhr von Hendrik (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „=== Beschreibung === === Download === === Installation === === Konfiguration === ==== Autostart einrichten ==== ===== Linux ===== <syntaxhighlight lang="bash" line="1"> [Unit] Description=SAP Router After=network.target [Service] Type=simple RemainAfterExit=yes WorkingDirectory=/usr/sap/SR0 User=sapadm Group=sapsys Environment="SECUDIR=/usr/sap/SR0" "SNC_LIB=/usr/sap/SR0/libsapcrypto.so" #ExecStart=/usr/sap/SR0/sr_start.sh ExecStart=/usr/sap/SR0/sa…“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Zur Navigation springen Zur Suche springen

Beschreibung

Download

Installation

Konfiguration

Autostart einrichten

Linux
[Unit]
Description=SAP Router
After=network.target

[Service]
Type=simple
RemainAfterExit=yes
WorkingDirectory=/usr/sap/SR0
User=sapadm
Group=sapsys

Environment="SECUDIR=/usr/sap/SR0" "SNC_LIB=/usr/sap/SR0/libsapcrypto.so"
#ExecStart=/usr/sap/SR0/sr_start.sh
ExecStart=/usr/sap/SR0/saprouter -r -R /usr/sap/SR0/saprouttab -G /usr/sap/SR0/saprouter.log -V1 -T /usr/sap/SR0/saprouter.trc -J 5000000
ExecStop=/usr/sap/SR0/saprouter -s
ExecReload=/usr/sap/SR0/saprouter -n

Restart=on-failure

[Install]
WantedBy=multi-user.target
systemctl daemon-reload
systemctl enable saprouter.service
systemctl start saprouter.service