Amazon AWS Elastic Beanstalk Command Line Interface

To install Amazon AWS Elastic Beanstalk Command Line Interface (EB CLI), run pip install awsebcli To create a project. mkdir serverok cd serverok git init eb init To create servers in AWS, run eb create It ask some question, once you done, it shows URL like following In this cause, the URL http://serverok-dev.us-west-2.elasticbeanstalk.com/ can be … Read more

Amazon S3

Make Amazon S3 Bucket public Enable Amazon Cloudfront CDN in WordPress Install Amazon AWS awscli Delete Amazon S3 Bucket Amazon S3 CORS Mount Amazon s3 on Linux How to find Amazon S3 bucket size Copy files from one Amazon S3 bucket to another https://wasabi.com

Make Amazon S3 Bucket public

To make an Amazon S3 bucket public, you need to modify the bucket’s policy to allow public access. You get a blank editor. Paste the following code and click save changes to make the bucket public. Replace BUCKET_NAME_HERE with your actual S3 Bucket name. See Amazon S3

Amazon AWS (awscli) command line interface

awscli is a command line tool for Amazon AWS. To install, run Create a virtual environment and activate it Install awscli with pip You can find more details at https://docs.aws.amazon.com/cli/latest/reference Once installed, you need to configure it aws configure To sync content of a folder to Amazon S3 bucket, run Whitelist IP in AWS security … Read more

serverless

Serverless is your toolkit for deploying and operating serverless architectures. Focus on your application, not your infrastructure. https://www.serverless.com https://openwhisk.apache.org/

Kubernetes

Easy Kubernetes setup on Ubuntu with microk8s Kubeapps https://kubernetes.io/docs/tutorials/hello-minikube/ Install Minikube in Ubuntu kubectl kubectl Kubernetes scale a deployment Google Kubernetes Engine Create Kubernetes cluser using gcloud Google Kubernetes Engine Create Kubernetes cluser using gcloud Free Online Labs https://labs.play-with-k8s.com Learn Kubernetes using Interactive Browser-Based Scenarios

aws

Amazon EC2 Amazon RDS Amazon S3 AWS Price calculator Free AWS Credit To backup a folder to the Amazon S3 bucket, run Example To sync (download) a s3 bucket to your local computer, run To list all s3 buckets, run Example

Amazon ElastiCache

Amazon ElastiCache to run Redis or Memcached cluster on Amazon cloud. You get some stats for your cache server/cluster. You can connect to the Endpoint from your application. There is no authentication, you can protect your server by placing it inside private network/vpc.