Last active
January 3, 2024 15:30
-
-
Save flox1an/b05d9b8d8b5ff8ff0a0657f2c25d7d8d to your computer and use it in GitHub Desktop.
Alfresco systemd service sample configuration file /etc/systemd/system/alfresco.service
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=Alfresco ECM Repository | |
After=network.target mysql.service | |
[Service] | |
Type=forking | |
ExecStart=/opt/alfresco/alfresco.sh start | |
ExecReload=/opt/alfresco/alfresco.sh restart | |
ExecStop=/opt/alfresco/alfresco.sh stop | |
User=alfresco | |
PIDFile=/opt/alfresco/tomcat/temp/catalina.pid | |
[Install] | |
WantedBy=multi-user.target | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment