Teleport-acm service does not start after reboot of starter cluster #43172
-
Hello, The starter cluster teleport-acm service does not restart after reboot of ec2 instance.
Teleport version - version: v3
teleport:
nodename: ap-south-1-compute-internal
advertise_ip: <redacted>
log:
output: stderr
severity: INFO
data_dir: /var/lib/teleport
storage:
type: dynamodb
region: ap-south-1
table_name: teleport
audit_events_uri: dynamodb://<redacted>
audit_sessions_uri: s3://<redacted>/records
auth_service:
enabled: yes
keep_alive_interval: 1m
keep_alive_count_max: 3
listen_addr: 0.0.0.0:3025
authentication:
type: local
second_factor: on
webauthn:
rp_id: <redacted>
cluster_name: teleport
proxy_listener_mode: multiplex
ssh_service:
enabled: yes
listen_addr: 0.0.0.0:3022
proxy_service:
enabled: yes
web_listen_addr: 0.0.0.0:443
public_addr: <redacted>:443
trust_x_forwarded_for: true Recreation steps
How do I make the teleport-acm service restart at boot? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It looks like this was an error in the unit file - I've submitted a PR here to fix it: #43213 Assuming this is merged and backported quickly, the 16.0.2 AMI should have the fix in. In the meantime, you can just
Then |
Beta Was this translation helpful? Give feedback.
It looks like this was an error in the unit file - I've submitted a PR here to fix it: #43213
Assuming this is merged and backported quickly, the 16.0.2 AMI should have the fix in.
In the meantime, you can just
sudo systemctl edit --full teleport-acm.service
and add this to the end of the file:Then
sudo systemctl daemon-reload
andsudo systemctl enable teleport-acm
should work.