Skip to content

Instantly share code, notes, and snippets.

View MenukaIshan's full-sized avatar
🎯
Focusing

Menuka Ishan MenukaIshan

🎯
Focusing
View GitHub Profile
@MenukaIshan
MenukaIshan / aws-certification.md
Created October 4, 2018 16:03 — forked from ellerbrock/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.
# Simple SonarQube database and user creation for Postgresql
#
sudo -u postgres psql postgres
CREATE DATABASE sonar;
CREATE USER sonar WITH PASSWORD 'verysecret';
GRANT ALL PRIVILEGES ON DATABASE sonar TO sonar;
@MenukaIshan
MenukaIshan / restart_nginx.bat
Created March 4, 2019 10:48 — forked from keberwein/restart_nginx.bat
Restart Nginx Windows
@ECHO OFF
cd /nginx
taskkill /f /IM nginx.exe
start nginx
EXIT