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 :: setup commandline vscode in mac 
Shell :: zsh problem: compinit:503: no such file or directory 
Shell :: batch file drive 
Shell :: download heroku ubuntu 
Shell :: ubuntu undelete a whole directory 
Shell :: bash: count number of lines 
Shell :: ubuntu chang host name 
Shell :: install of the kali wsl desktop 
Shell :: kali linux gui for wsl2 
Shell :: download specific folder from git 
Shell :: how to use git 
Shell :: avro for debian 
Shell :: linux change user shell /bin/false 
Shell :: how to close port in linux 
Shell :: install solana 
Shell :: tinymce yarn 
Shell :: how to change priority in network interface ubuntu 
Shell :: bash array append 
Shell :: android home linux 
Shell :: how to edit old commit message in git 
Shell :: how to empty text file in unix 
Shell :: raspberry pi mongodb server 5.0 
Shell :: dbeaver password reveal 
Shell :: linux keyboard layout cli 
Shell :: current directory makefile 
Shell :: git add ssh key 
Shell :: command to list hardware in linux 
Shell :: composer add package 
Shell :: ubuntu path in windows 10 
Shell :: install ssl certificate on aws ec2 instance ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =