on El Capitan, after installing the brew...
$ brew update
$ brew tap caskroom/cask
$ brew install Caskroom/cask/java
And Java 8 will be installed at /Library/Java/JavaVirtualMachines/jdk1.8.xxx.jdk/
Check version:
-server | |
-Xms512m | |
-Xmx2048m | |
-XX:MaxPermSize=512m | |
-XX:ReservedCodeCacheSize=256m | |
-XX:+UseCodeCacheFlushing | |
-XX:+UseCompressedOops | |
-XX:+UseConcMarkSweepGC | |
-XX:+AggressiveOpts | |
-XX:+CMSClassUnloadingEnabled |
-server | |
-Xms2048m | |
-Xmx2048m | |
-XX:NewSize=512m | |
-XX:MaxNewSize=512m | |
-XX:PermSize=512m | |
-XX:MaxPermSize=512m | |
-XX:+UseParNewGC | |
-XX:ParallelGCThreads=4 | |
-XX:MaxTenuringThreshold=1 |
var gulp = require('gulp'); | |
var myTransform = require('./myTransform'); | |
gulp.task('foobar', function (){ | |
return gulp.src("foobar.js") | |
.pipe(myTransform()) | |
.pipe(gulp.dest('.')); | |
}); |
--- | |
- name: Check current timezone | |
shell: awk -F\" '{ print $2}' /etc/sysconfig/clock | |
register: current_zone | |
changed_when: False | |
- name: Set UTC timezone | |
file: src=/usr/share/zoneinfo/{{ timezone }} dest=/etc/localtime state=link force=yes | |
when: current_zone.stdout != '{{ timezone }}' |
on El Capitan, after installing the brew...
$ brew update
$ brew tap caskroom/cask
$ brew install Caskroom/cask/java
And Java 8 will be installed at /Library/Java/JavaVirtualMachines/jdk1.8.xxx.jdk/
Check version:
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
These instructions outline how to install DalmatinerDB on a single Linux x86_64 physical server or virtual machine. Scaling out will be covered in a future document. This setup guide also covers configuring CAdvisor and Telegraf to send in monitoring data and Grafana to build dashboards.
Here's how everything connects together:
#!/bin/sh | |
# if no args prints http and https proxy info | |
if [ -z "$1" ]; then | |
echo " Wi-Fi HTTP PROXY:" | |
networksetup -getwebproxy "Wi-Fi" | |
# if only one arg turns http and https proxy on/off | |
elif [ -n "$1" ] && [ -z "$2" ]; then | |
networksetup -setwebproxystate "Wi-Fi" $1 | |
networksetup -setsecurewebproxystate "Wi-Fi" $1 | |
# if wtwo args sets http and https proxy |