Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

amazon linux install ssm agent

#!/bin/bash
cd /tmp
sudo yum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm
sudo systemctl enable amazon-ssm-agent
sudo systemctl start amazon-ssm-agent
Comment

Install SSSM Agent on Amazon Linux 2

## --------------
## Amazon Linux 2
## --------------
 
## Install AWS SSM Agent (Replace <region> with the region where your ec2 instance is hosted)
sudo yum install -y https://s3.<region>.amazonaws.com/amazon-ssm-<region>/latest/linux_amd64/amazon-ssm-agent.rpm
 
## Start and enable SSM agent
sudo systemctl enable amazon-ssm-agent
sudo systemctl start amazon-ssm-agent
sudo systemctl status amazon-ssm-agent
Comment

PREVIOUS NEXT
Code Example
Shell :: git get clean remote branch 
Shell :: ffmpeg convert mkv to mp4 
Shell :: docker for elixir 
Shell :: remove first word of pipe output 
Shell :: conda install netcdf4 
Shell :: git checkout new branch 
Shell :: npm install custom registry 
Shell :: substring replacement 
Shell :: install mariadb amazon linux 2 
Shell :: bash scripting string comparison 
Shell :: postgres install mac 
Shell :: opencv install 
Shell :: connecting sublime to bash command line 
Shell :: how to install ssh in windows 10 
Shell :: git reset soft head 
Shell :: how to update metasploit 
Shell :: install taggit 
Shell :: instalar docker compose ubuntu 
Shell :: how to download terminator in ubuntu 
Shell :: start ssh macos 
Shell :: run postgresql command line maccos 
Shell :: install docker centos 8 
Shell :: nuxt install pug 
Shell :: install x server wsl2 
Shell :: How to run a command within another command bash 
Shell :: gzip version check 
Shell :: set email git 
Shell :: ubuntu install arial font 
Shell :: how to remove v4l2loopback 
Shell :: install deb file in ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =