In this post we will see how quick and fast it is to setup a NFS Server using a Docker container using itsthenetwork/nfs-server-alpine. If you would like to install NFS Server using a non-docker based deployment, you can have…
Create a AWS ECS Cluster with AWS CLI Tools
In this Tutorial we will build a ECS Cluster on AWS using the AWS CLI Tools.
How to Create Authorized Files With Correct Permissions
In this post we will demonstrate how to create authorized files with correct permissions in Linux. First create the deploy user and in my case add it to the docker group: $ useradd -s /bin/bash -m -G docker -c "docker…
Clone a Private Github Repo with a Personal Access Token
In this short post I will demonstrate how to clone a private github repository with a personal access token. From github.com/settings/tokens select the scopes: repo:statusrepo_deploymentpublic_reporepo:invitesecurity_eventsYou will receive a token which you need…
Access Remote MySQL with a SSH Tunnel
This is a quick post on how to access your remote MySQL server, which only allow MySQL connections from our bastion host and we would like to access that MySQL via the Bastion Server with a SSH Tunnel from our…
Convert CSV to JSON files with AWS Lambda and S3 Events
In this tutorial, I will keep it basic to demonstrate the power of how you can trigger a AWS Lambda function on a S3 PUT event,
How to use the CloudWatch Datasource in Grafana
In this tutorial we will use the CloudWatch datasource in Grafana to create dashboards on our CloudWatch Metrics in AWS. What can we expect in this postIf you follow along, by the end of this tutorial you will be able…
Getting Started with Multipass VMs
I stumbled upon a great project from Canonical called Multipass which allows you to run lightweight virtual machines on your laptop/workstation and it's super fast! It's using the native hypervisors of all supported platforms, so you can run Multipass…