Skip to content

Instantly share code, notes, and snippets.

@prashanth5429
prashanth5429 / aws-certification.md
Created July 18, 2018 08:38 — forked from miglen/aws-certification.md
AWS Certification guide and notes on how to prepare for the aws associate certification architect, sysops and developer exams


AWS Certification notes

Those are my personal notes on AWS Solution Architect certification preparation. Hope you find them usefull.

To pass AWS certification, you should have:

  • Sound knowledge about most of the AWS services ( EC2, VPC, RDS, Cloudfront, S3, Route53 etc,)
  • Hands on experience with AWS services.
@prashanth5429
prashanth5429 / gist:60c34b8c83927e7dc85abc8ff9b24d91
Created November 7, 2017 11:22 — forked from ashokarun/gist:fef83b5949057187c1723597247155b6
Script to kill all MySQL processes for database user
#!/bin/bash
#Author : Arunlal A
#Website: https://www.crybit.com
echo -n "Enter databse user name: "
read THEUSER
skill -9 -u $THEUSER ; for i in `mysqladmin processlist | grep $THEUSER | awk '{print $2}'` ; do mysqladmin kill $i ; done ; echo "$THEUSER has been killed!"