The 15 Most Important Linux Commands For AWS This guide will take you through some of the most common and important Linux commands for AWS for your daily professional life. How to install Apache in Amazon Linux Machine sudo -i ( Login as Root User ) Yum install httpd Service httpd start Chkconfig httpd on Cat > /var/www/html/index.html ( Creating a web page) Webserver1 (ctrl + D) Service apache2 restart ( Restart Apache in Ubuntu) lsblk ( Commands to mount EBS Volume in Linux ) mkfs -t ext4 /dev/xvdf file -s /dev/xvdf mkdir /Data mount /dev/xvdf /Data df -hT vi /etc/fstab /dev/xvdf /Data ext4 defaults,nofail 0 0
Introduction to AWS S3 Amazon Simple Storage Service (Amazon S3) is a widely used object storage service provided by Amazon Web Services (AWS). It allows you to store and retrieve any amount of data at any time from the internet. Here's a comprehensive overview covering key aspects of AWS S3: 1. Overview: Amazon S3 is a scalable and highly durable storage infrastructure designed for storing and retrieving any amount of data. It's built on a simple key-value data model, where data is stored in "buckets" and each object is assigned a unique key. 2. Buckets: A bucket is a container for storing objects in Amazon S3. Bucket names must be globally unique and follow specific naming rules. Permissions and policies can be set at the bucket level to control access. 3. Objects: An object is the fundamental entity stored in Amazon S3, consisting of the data itself and metadata. Objects can range in size from a few bytes to several terabytes. Metadata includes details such as th...
A Comprehensive Guide To Kubernetes: Everything You Need To Know. Following is the Kubernetes ascending timeline order : Google started the Borg system around 2004. Google started this project as their internal project with a small team to run a couple of hundred jobs Around 2013 Google renamed the project to Omega cluster management system, a flexible, scalable tool to manage their large-scale compute clusters. In 2014 Google launched Kubernetes. Google introduced Kubernetes as an open-source version of Borg. In 2014 google introduced Kubernetes as an open-source version for borg. Kubernetes's first GitHub was released somewhere on June 7. Around July Microsoft, RedHat, IBM, and Docker joins the Kubernetes community. In 2015 July Kubernetes v.10 get released and google with Linux foundation from the CNCF(Cloud Native Computing Foundation). They aimed to create an ecosystem for the community around a constellation for projects ...
No comments:
Post a Comment