• Skip to main content

Uly.me

cloud engineer

  • Home
  • About
  • Archives

amazon

Install Docker on Amazon Linux 2

December 11, 2021

Steps how to install Docker and Docker Compose on Amazon Linux 2.

Install Docker

$ sudo amazon-linux-extras install docker
$ sudo service docker start
$ sudo usermod -a -G docker ec2-user

$ sudo amazon-linux-extras install docker $ sudo service docker start $ sudo usermod -a -G docker ec2-user

Start at boot.

$ sudo chkconfig docker on

$ sudo chkconfig docker on

Install git (optional).

$ sudo yum install -y git

$ sudo yum install -y git

Install Docker Compose

$ sudo curl -L https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m) \
-o /usr/bin/docker-compose
$ sudo chmod +x /usr/local/bin/docker-compose

$ sudo curl -L https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m) \ -o /usr/bin/docker-compose $ sudo chmod +x /usr/local/bin/docker-compose

Check

docker --version
docker-compose --version

docker --version docker-compose --version

Filed Under: Linux Tagged With: amazon, docker, docker-compose, git, install

Amazon Selling Routers

July 15, 2018

Amazon tends to be dipping in their toes into everything. Remember Whole Foods. If that wasn’t enough, Amazon started competing with drugstores six months ago when it acquired Pillpack. Shares of Walgreens and CVS went down 9 percent as a result. Now, Amazon is saying that they want to compete with network companies like Cisco, Juniper and Arista. Potentially, Amazon can sell networking data switches at deep discounts ranging anywhere from 50% up to 80% discount. That’s bad news for some networking companies.

Filed Under: Cloud Tagged With: amazon, cisco, networks

Install S3cmd on Ubuntu

December 22, 2014

If you want to backup your Linux server to Amazon S3 (Simple Storage Service), you need to install a utility called S3cmd which allows you to interact with Amazon’s cloud storage service. You’ll be able to create s3 buckets, upload and retrieve files from your Linux server to the S3.

You can install S3cmd from Ubuntu.

sudo apt-get install s3cmd

sudo apt-get install s3cmd

Next, you need to configure S3cmd using your S3 credentials. You’ll need an Access key and a Secret key from Amazon’s Security Credentials page which you can access from Amazon’s IAM Management Console.

sudo s3cmd --configure

sudo s3cmd --configure

For details on how to fully implement S3cmd, please take a look at this article.

Filed Under: Cloud, Linux Tagged With: amazon, cloud, s3, storage

  • Home
  • About
  • Archives

Copyright © 2023