This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Function creation && Process Array in Sequence | |
const stopRDSMySQL = async ({DBInstanceIdentifier}) => { | |
try { | |
const rds = new AWS.RDS(); | |
const {DBInstances} = await rds.describeDBInstances({DBInstanceIdentifier}).promise(); | |
const listOfStoppedDBInstances = []; | |
if(!_.isEmpty(DBInstances)) { | |
for(const DBInstance of DBInstances) { | |
const {DBInstanceStatus, DBInstanceIdentifier} = DBInstance; | |
if(DBInstanceStatus === 'available') { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Referrence: https://gist.github.com/paladini/972d987cc5be189740737a5973eea4a3 | |
# Setup redis-cli without the whole Redis Server on AWS EC2 | |
sudo yum install gcc -y | |
wget http://download.redis.io/redis-stable.tar.gz && tar xvzf redis-stable.tar.gz && cd redis-stable && make && sudo cp src/redis-cli /usr/local/bin/ && sudo chmod 755 /usr/local/bin/redis-cli | |
redis-cli -h 192.268.34.32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew install carthage | |
cd MacPass | |
carthage bootstrap --platform macOS | |
xcodebuild -scheme MacPass -target MacPass -configuration Release CODE_SIGNING_REQUIRED=NO NO_SPARKLE=NO_SPARKLE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh -i ~/.ssh/rsa_key.pem -t [email protected] 'ssh -i ~/.ssh/rsa_key.pem [email protected]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For using epel packages | |
sudo yum install nodejs npm --enablerepo=epel | |
# For disable SSL if error occur: "npm ERR! code UNABLE_TO_GET_ISSUER_CERT_LOCALLY" | |
sudo npm config set strict-ssl=false | |
# Install npm & version control | |
sudo npm install -g n | |
sudo npm install -g npm | |
# Install specific nodejs version | |
sudo n v10.8.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source From: https://www.jeremydaly.com/access-aws-vpc-based-elasticsearch-cluster-locally/ | |
# You need to have an EC2 instance running in the same VPC as your Elasticsearch cluster. | |
# If you don’t, fire up a micro Linux instance with a secure key pair. | |
# NOTE: Make sure your instance’s security group has access to the Elasticsearch cluster and | |
# that your Elasticsearch cluster’s access policy uses the “Do not require signing request with IAM credential” template. | |
# At local Client | |
## Create SSH Tunnel | |
cat << EOF > ~/.ssh/config | |
# Elasticsearch Tunnel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function toHex(s) { | |
// utf8 to latin1 | |
var s = unescape(encodeURIComponent(s)) | |
var h = '' | |
for (var i = 0; i < s.length; i++) { | |
h += s.charCodeAt(i).toString(16) | |
} | |
return h | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo yum install gcc-c++ pcre-devel zlib-devel make unzip openssl-devel libuuid-devel libxslt-devel gd-devel perl-ExtUtils-Embed GeoIP-devel gperftools-devel | |
#[check the release notes for the latest version] | |
NPS_VERSION=1.13.35.2-stable | |
cd | |
wget https://github.com/apache/incubator-pagespeed-ngx/archive/v${NPS_VERSION}.zip | |
unzip v${NPS_VERSION}.zip | |
nps_dir=$(find . -name "*pagespeed-ngx-${NPS_VERSION}" -type d) | |
cd "$nps_dir" | |
NPS_RELEASE_NUMBER=${NPS_VERSION/beta/} | |
NPS_RELEASE_NUMBER=${NPS_VERSION/stable/} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# VARIABLES # | |
AWSAccessKeyId=\$1 | |
AWSSecretKey=\$2 | |
CRON_DIR=/var/spool/cron | |
# EXECUTE # | |
# Install libs | |
sudo yum install -y unzip perl-libwww-perl perl-libdatetime-perl perl-Sys-Syslog perl-DateTime-TimeZone perl-LWP-Protocol-https perl-Crypt-SSLeay | |
# Setup AWS mon scripts | |
mkdir ~/aws |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# DELETE _template/mysql_slow | |
PUT _template/mysql_slow | |
{ | |
"order": 0, | |
"template": "mysql-slow-*", | |
"settings": { | |
"index": { | |
"number_of_shards": "1" | |
} | |
}, |