ID: ee7677575e8eaf4a04ddc8729f6163786f868b0e
39 lines
—
1K —
View raw
| # This is an example service file for systemd. If using the Fuseki server, this
# service can be configured to automatically start the server.
#
# How to use this file:
# - copy this file to /etc/systemd/system
# - edit the variables below accordingly
# - systemctl enable fuseki.service
# - systemctl start fuseki.service
[Unit]
Description=Fuseki server for DOKK
After=network.target
[Service]
# Edit the line below to adjust the amount of memory allocated to Fuseki
Environment=JVM_ARGS=-Xmx2G
# Folder of the Fuseki installation files
Environment=FUSEKI_HOME=/home/fuseki/fuseki_server
# Fuseki runtime folder (will contain configuration files and other runtime files).
Environment=FUSEKI_BASE=/home/fuseki/fuseki_base
# Command for launching the Fuseki server
# Arguments must be passed via command line because the server is started before
# the configuration file is read.
ExecStart=/home/fuseki/fuseki_server/fuseki-server --localhost
User=fuseki
Group=fuseki
WorkingDirectory=/home/fuseki/fuseki_server
Restart=always
# Java processes exit with status 143 when terminated by SIGTERM, this
# should be considered a successful shutdown
SuccessExitStatus=143
[Install]
WantedBy=multi-user.target
|