Skip to content
2023 API Summit Hackathon: Experiment with AI for APIs (August 28 - September 27) Learn More →
Kong Logo | Kong Docs Logo
search
  • We're Hiring!
  • Docs
    • Kong Gateway
      Lightweight, fast, and flexible cloud-native API gateway
      Kong Konnect
      Single platform for SaaS end-to-end connectivity
      Kong Mesh
      Enterprise service mesh based on Kuma and Envoy
      decK
      Helps manage Kong’s configuration in a declarative fashion
      Kong Ingress Controller
      Works inside a Kubernetes cluster and configures Kong to proxy traffic
      Insomnia
      Collaborative API development platform
      Kuma
      Open-source distributed control plane with a bundled Envoy Proxy integration
      Docs Contribution Guidelines
      Want to help out, or found an issue in the docs and want to let us know?
  • API Specs
  • Plugin Hub
    • Explore the Plugin Hub
      View all plugins View all plugins View all plugins arrow image
    • Functionality View all View all arrow image
      View all plugins
      Authentication's icon
      Authentication
      Protect your services with an authentication layer
      Security's icon
      Security
      Protect your services with additional security layer
      Traffic Control's icon
      Traffic Control
      Manage, throttle and restrict inbound and outbound API traffic
      Serverless's icon
      Serverless
      Invoke serverless functions in combination with other plugins
      Analytics & Monitoring's icon
      Analytics & Monitoring
      Visualize, inspect and monitor APIs and microservices traffic
      Transformations's icon
      Transformations
      Transform request and responses on the fly on Kong
      Logging's icon
      Logging
      Log request and response data using the best transport for your infrastructure
  • Support
  • Community
  • Kong Academy
Get a Demo Start Free Trial
Kong Gateway
3.4.x (latest)
  • Home icon
  • Kong Gateway
  • Production Deployment
  • Running Kong
  • Control Kong Gateway through systemd
github-edit-pageEdit this page
report-issueReport an issue
  • Kong Gateway
  • Kong Konnect
  • Kong Mesh
  • Plugin Hub
  • decK
  • Kong Ingress Controller
  • Insomnia
  • Kuma

  • Docs contribution guidelines
  • 3.4.x (latest)
  • 3.3.x
  • 3.2.x
  • 3.1.x
  • 3.0.x
  • 2.8.x
  • 2.7.x
  • 2.6.x
  • Archive (pre-2.6)
enterprise-switcher-icon Switch to OSS
On this pageOn this page
  • systemd commands for working with Kong Gateway
    • Start Kong Gateway
    • Stop Kong Gateway
    • Start Kong Gateway at system boot
    • Restart Kong Gateway
    • Query Kong Gateway status
  • Customize the Kong Gateway unit file
    • Logging to syslog and journald
    • Customize Kong’s Nginx instance using the Nginx directive injection system
    • Customize Kong’s Nginx instance using ––nginx-conf
    • Customize Kong’s Nginx instance including files via the injected Nginx directives

Control Kong Gateway through systemd

This document includes instructions on how to integrate Kong Gateway with systemd for Debian and RPM based packages.

Note that some of the supported GNU/Linux distributions for Kong Gateway may not have adopted systemd as their default init system (for example, CentOS 6 and RHEL 6). For the following instructions, it is assumed that Kong Gateway has already been installed and configured on a systemd-supported GNU/Linux distribution.

systemd commands for working with Kong Gateway

Start Kong Gateway

# For Kong Gateway
sudo systemctl start kong-enterprise-edition

# For Kong Gateway (OSS)
sudo systemctl start kong

Stop Kong Gateway

# For Kong Gateway
sudo systemctl stop kong-enterprise-edition

# For Kong Gateway (OSS)
sudo systemctl stop kong

Start Kong Gateway at system boot

Enable starting Kong Gateway automatically at system boot

# For Kong Gateway
sudo systemctl enable kong-enterprise-edition

# For Kong Gateway (OSS)
sudo systemctl enable kong

Disable starting Kong Gateway automatically at system boot

# For Kong Gateway
sudo systemctl disable kong-enterprise-edition

# For Kong Gateway (OSS)
sudo systemctl disable kong

Restart Kong Gateway

# For Kong Gateway
sudo systemctl restart kong-enterprise-edition

# For Kong Gateway (OSS)
sudo systemctl restart kong

Query Kong Gateway status

# For Kong Gateway
sudo systemctl status kong-enterprise-edition

# For Kong Gateway (OSS)
sudo systemctl status kong

Customize the Kong Gateway unit file

The official systemd service is located at /lib/systemd/system/kong-enterprise-edition.service for Kong Gateway, or at /lib/systemd/system/kong.service for Kong Gateway (OSS).

Note that the official Kong systemd service doesn’t set user or group as root, which is required to run the system file. See the example below with both user and group both set to root:

[Unit]
Description=Kong Enterprise Edition
Documentation=https://docs.konghq.com/enterprise/
After=syslog.target network.target remote-fs.target nss-lookup.target
[Service]
User=root
Group=root
ExecStartPre=/usr/local/bin/kong prepare -p /usr/local/kong -c /home/ec2-user/kong.conf
ExecStart=/usr/local/openresty/nginx/sbin/nginx -p /usr/local/kong -c nginx.conf
ExecReload=/usr/local/bin/kong prepare -p /usr/local/kong
ExecReload=/usr/local/openresty/nginx/sbin/nginx -p /usr/local/kong -c nginx.conf -s reload
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true
# All environment variables prefixed with KONG_ and capitalized will override
# the settings specified in the /etc/kong/kong.conf.default file.
#
# For example:
#   log_level = debug in the .conf file -> KONG_LOG_LEVEL=debug env var.
Environment=KONG_NGINX_DAEMON=off
# You can control this limit through /etc/security/limits.conf
LimitNOFILE=infinity
[Install]
WantedBy=multi-user.target

For scenarios where customizations are needed (for example, configuring Kong or modifying the service file behavior), we recommend creating another service at /etc/systemd/system/kong-enterprise-edition.service for Kong Gateway, or at /etc/systemd/system/kong.service for Kong Gateway (OSS), to avoid conflicts upon reinstalling or upgrading Kong.

All environment variables prefixed with KONG_ and capitalized will override the settings specified in the /etc/kong/kong.conf.default file. For example: log_level = debug in the .conf file translates to the KONG_LOG_LEVEL=debug environment variable.

You can also choose use a configuration file instead of environment variables. In this case, modify the ExecStartPre systemd directive to execute kong prepare with the -c argument to point to your configuration file. For example, if you have a custom configuration file at /etc/kong/kong.conf, modify the ExecStartPre directive as follows:

ExecStartPre=/usr/local/bin/kong prepare -p /usr/local/kong -c /etc/kong/kong.conf

When linking non environment files using the EnvironmentFile systemd directive, note that the systemd parser will only recognize environment variables assignments. For example, if one of the Kong’s default configuration files are linked (/etc/kong/kong.conf.default and /etc/kong.conf), non environment variables assignments in the file could lead to systemd errors. In this case, systemd will not allow the Kong service to be started. For this reason, we recommend specifying an EnvironmentFile other than the default ones:

EnvironmentFile=/etc/kong/kong_env.conf

Logging to syslog and journald

In this case, adding the below Environment systemd directives to your customized systemd service file at /etc/systemd/system/kong-enterprise-edition.service will do it:

Environment=KONG_PROXY_ACCESS_LOG=syslog:server=unix:/dev/log
Environment=KONG_PROXY_ERROR_LOG=syslog:server=unix:/dev/log
Environment=KONG_ADMIN_ACCESS_LOG=syslog:server=unix:/dev/log
Environment=KONG_ADMIN_ERROR_LOG=syslog:server=unix:/dev/log

To view the journald logs:

# For Kong Gateway
journalctl -u kong-enterprise-edition

# For Kong Gateway (OSS)
journalctl -u kong

To view the syslog logs:

tail -F /var/log/syslog

Customize Kong’s Nginx instance using the Nginx directive injection system

To use the injection system with environment variables, add the below Environment systemd directive to your custom service at /etc/systemd/system/kong-enterprise-edition.service (Kong Gateway) or /etc/systemd/system/kong.service (Kong Gateway (OSS)). Note the quoting rules defined by systemd to specify an environment variable containing spaces:

Environment="KONG_NGINX_HTTP_OUTPUT_BUFFERS=4 64k"

Customize Kong’s Nginx instance using ––nginx-conf

To use the --nginx-conf argument, modify the ExecStartPre systemd directive to execute kong prepare with the --nginx-conf argument. For example, if you have a custom template at /usr/local/kong/custom-nginx.template, modify the ExecStartPre directive as follows:

ExecStartPre=/usr/local/bin/kong prepare -p /usr/local/kong --nginx-conf /usr/local/kong/custom-nginx.template

Customize Kong’s Nginx instance including files via the injected Nginx directives

To include files via the injected Nginx directives with environment variables, add the below Environment systemd directive to your custom service at /etc/systemd/system/kong-enterprise-edition.service (Kong Gateway) or /etc/systemd/system/kong.service (Kong Gateway (OSS)):

Environment=KONG_NGINX_HTTP_INCLUDE=/path/to/your/my-server.kong.conf
Thank you for your feedback.
Was this page useful?
Too much on your plate? close cta icon
More features, less infrastructure with Kong Konnect. 1M requests per month for free.
Try it for Free
  • Kong
    THE CLOUD CONNECTIVITY COMPANY

    Kong powers reliable digital connections across APIs, hybrid and multi-cloud environments.

    • Company
    • Customers
    • Events
    • Investors
    • Careers Hiring!
    • Partners
    • Press
    • Contact
  • Products
    • Kong Konnect
    • Kong Gateway
    • Kong Mesh
    • Get Started
    • Pricing
  • Resources
    • eBooks
    • Webinars
    • Briefs
    • Blog
    • API Gateway
    • Microservices
  • Open Source
    • Install Kong Gateway
    • Kong Community
    • Kubernetes Ingress
    • Kuma
    • Insomnia
  • Solutions
    • Decentralize
    • Secure & Govern
    • Create a Dev Platform
    • API Gateway
    • Kubernetes
    • Service Mesh
Star
  • Terms•Privacy
© Kong Inc. 2023