teleport/examples/systemd/README.md
Ev Kontsevoy b2c12066a0 Updated getting started experience for systemd users
- Modified the default teleport.service to start without
  /etc/teleport.yaml
- Updated REAMDE for systemd unit
- Updated ./install script
2018-07-19 18:04:14 -07:00

25 lines
389 B
Markdown

# Systemd Service
Sample configuration of `systemd` service file for Teleport
To use it:
```bash
cp teleport.service /etc/systemd/system/teleport.service
systemctl daemon-reload
systemctl enable teleport
systemctl start teleport
```
To check on Teleport daemon status:
```bash
systemctl status teleport
```
To take a look at Teleport system log:
```bash
journalctl -fu teleport
```