How To Setup AWS Logs Agent on Ubuntu 16.04 Instance

How To Setup AWS Logs Agent on Ubuntu 16.04 Instance

This tutorial will guide you through the steps for configuring awslogs agent on an EC2 Ubuntu 16.04 server instance.

Install and Configure AWSLogs

Step1: Update the system and install python.

sudo apt-get update -y
sudo apt-get install python

Step2: Download the latest agent installation script. curl

curl https://s3.amazonaws.com/aws-cloudwatch/downloads/latest/awslogs-agent-setup.py -O

Step3: Run the agent setup command with the region parameter. Replace the eu-west-2 with the aws region code where you are operating.

sudo python ./awslogs-agent-setup.py --region us-west-2

Fill in the required parameters when prompted.

Setup AWSLogs as a service

There is no support for creating awslogs as a service in Ubuntu 16.04. So we need to create our own systemd unit file for running it as a service.

  1. cd into /etc/systemd/system directory.
cd /etc/systemd/system
  1. Create a file named awslogs.service
vim awslogs.service
  1. Copy the following content on the awslogs.service file.
[Unit]
Description=Service for CloudWatch Logs agent
After=rc-local.service

[Service]
Type=simple
Restart=always
KillMode=process
TimeoutSec=infinity
PIDFile=/var/awslogs/state/awslogs.pid
ExecStart=/var/awslogs/bin/awslogs-agent-launcher.sh --start --background --pidfile $PIDFILE --user awslogs --chuid awslogs &

[Install]
WantedBy=multi-user.target
  1. Now start the agent using the following command.
systemctl start awslogs.service

To stop and restart, you can use the following commands.

systemctl stop awslogs.service
systemctl restart awslogs.service
  1. To enable awslogs service on boot, execute the following command.
systemctl enable awslogs.service
About the author
devopscube

devopscube

Since 2014, we're a thriving DevOps community dedicated to helping DevOps Engineers grow with high-quality, in-depth articles, comprehensive learning paths, expert insights, and practical resources.

Great! You’ve successfully signed up.

Welcome back! You've successfully signed in.

You've successfully subscribed to DevOpsCube – Easy DevOps, SRE Guides & Reviews.

Success! Check your email for magic link to sign-in.

Success! Your billing info has been updated.

Your billing was not updated.