Category : Uncategorized

Step 1: Install Java 8 (JDK 8)Open terminal and enter the following commands.sudo add-apt-repository -y ppa:webupd8team/javasudo apt-get updateecho debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selectionsecho debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selectionssudo apt-get -y install oracle-java8-installer Setup JAVA Environmentsudo apt-get -y install oracle-java8-set-default Step 2: Verify JAVA VersionAfter successfully installing oracle java using above step ..

Read more

This tutorial will walk you through installing the command-line FTP client commonly known as ‘ftp’. This application is available by default on most distributions with a standard install but because we use a minimal install it must be installed separately. This tutorial assumes that you have gone through the Ubuntu Setup Guide and are familiar ..

Read more

In order to connect to a SSL enabled Redis from cli you would need to first install stunnel: yum install stunnel then in the configuration file add: cat /etc/stunnel/redis-cli.conffips = nosetuid = rootsetgid = rootpid = /var/run/stunnel.piddebug = 7options = NO_SSLv2options = NO_SSLv3[redis-cli]client = yesaccept = 127.0.0.1:6379connect = MASTER_REDIS_IP:6379[redis-cli-slave]client = yesaccept = 127.0.0.1:6380connect = SLAVE_REDIS_IP:6379 ..

Read more

Introduction One of the more popular products on the market right now is NewRelic for application monitoring. What’s cool is you can also use their Server product to monitor an unlimited number of servers using the same license key. This tutorial will briefly walk you through how to set this up on your ProfitBricks Ubuntu ..

Read more

– netstat -ntu | awk ‘ $5 ~ /^[0-9]/ {print $5}’ | cut -d: -f1 | sort | uniq -c | sort -n  netstat with group by (ip adress) netstat has two lines of headers: Active Internet connections (w/o servers) Proto Recv-Q Send-Q Local Address Foreign Address State Added a filter in the awk command to ..

Read more

Introduction One of the more popular products on the market right now is NewRelic for application monitoring. What’s cool is you can also use their Server product to monitor an unlimited number of servers using the same license key. This tutorial will briefly walk you through how to set this up on your ProfitBricks Ubuntu ..

Read more

– netstat -ntu | awk ‘ $5 ~ /^[0-9]/ {print $5}’ | cut -d: -f1 | sort | uniq -c | sort -n  netstat with group by (ip adress) netstat has two lines of headers: Active Internet connections (w/o servers) Proto Recv-Q Send-Q Local Address Foreign Address State Added a filter in the awk command to ..

Read more

Syntax The syntax of ip-ranges.json is as follows. syncTokenThe publication time, in Unix epoch time format. Type: String Example: “syncToken”: “1416435608”createDateThe publication date and time. Type: String Example: “createDate”: “2014-11-19-23-29-02″prefixesThe IP prefixes. Type: Arrayip_prefixThe public IP address range, in CIDR notation. Type: String Example: “ip_prefix”: “198.51.100.2/24″regionThe AWS region or GLOBAL for edge locations. Note that the CLOUDFRONT and ROUTE53 ranges are GLOBAL. Type: String Valid values: ap-northeast-1 | ap-southeast-1 | ap-southeast-2 | cn-north-1 | eu-central-1 |eu-west-1 | sa-east-1 | us-east-1 | us-gov-west-1 | us-west-1 | us-west-2 | GLOBAL Example: “region”: ..

Read more