Skip to content

Instantly share code, notes, and snippets.

@zengxs
Last active August 14, 2022 17:26
Show Gist options
  • Select an option

  • Save zengxs/a697d786b244d7b857d3d006213306a1 to your computer and use it in GitHub Desktop.

Select an option

Save zengxs/a697d786b244d7b857d3d006213306a1 to your computer and use it in GitHub Desktop.

Revisions

  1. Samuel Tseng renamed this gist May 18, 2016. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. Samuel Tseng created this gist May 18, 2016.
    23 changes: 23 additions & 0 deletions tomcat8.service
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    # Systemd unit file for tomcat
    [Unit]
    Description=Apache Tomcat Web Application Container
    After=syslog.target network.target

    [Service]
    Type=forking

    Environment=JAVA_HOME=/usr/lib/jvm/jre
    Environment=CATALINA_PID=/opt/tomcat/temp/tomcat.pid
    Environment=CATALINA_HOME=/opt/tomcat
    Environment=CATALINE_BASE=/opt/tomcat
    Environment='CATALINE_OPTS=-Xms128M -Xmx765M -server -XX:+UseParallelGC'
    Environment='JAVA_OPTS=-Djava.awt.haedless=true -Djava.security.egd=file:/dev/./urandom'

    ExecStart=/opt/tomcat/bin/startup.sh
    ExecStop=/bin/kill -15 $MAINPID

    User=tomcat
    Group=tomcat

    [Install]
    WantedBy=multi-user.target