- Download and install VirtualBox.
- Download the CoreOS ISO
- Create a new VM in VirtualBox
- For the OS, Other Linux, 64-bit should be fine
- Give the VM 1gb of memory, like your physical hardware has.
- Create a disk of whatever size you want. I made a VMDK file that could expand dynamically up to 8gb.
- Mount the ISO in the VM
- Right click on the VM and click settings
- Go to the storage tab
This file contains hidden or 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
| Install Kafka in CentOS |
This file contains hidden or 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
| # ---------------------------------------------------------------------------------------------------------------- | |
| # Elasticsearch-Toronto Meetup: The Power of Mapping (part 1 of 3) | |
| # ---------------------------------------------------------------------------------------------------------------- | |
| # My presentation at the first elasticsearch meetup in Toronto | |
| # January 19, 2015 | |
| # http://www.meetup.com/ElasticSearch-toronto | |
| # http://www.meetup.com/Elasticsearch-Toronto/events/218903340 | |
| # ---------------------------------------------------------------------------------------------------------------- | |
| # Demo with elasticsearch 1.4.2 and Marvel/Sense | |
| # Installation: http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/_installing_elasticsearch.html |
This file contains hidden or 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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| $script = <<SCRIPT | |
| sudo yum -y install ntp | |
| sudo chkconfig ntpd on | |
| sudo /etc/init.d/ntpd start | |
| sudo chkconfig iptables off | |
| sudo /etc/init.d/iptables stop | |
| sudo setenforce 0 |
This file contains hidden or 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
| # ---------------------------------------------------------------------------------------------------------------- | |
| # Elasticsearch-Toronto Meetup: The Power of Mapping (part 1 of 3) | |
| # ---------------------------------------------------------------------------------------------------------------- | |
| # My presentation at the first elasticsearch meetup in Toronto | |
| # January 19, 2015 | |
| # http://www.meetup.com/ElasticSearch-toronto | |
| # http://www.meetup.com/Elasticsearch-Toronto/events/218903340 | |
| # ---------------------------------------------------------------------------------------------------------------- | |
| # Demo with elasticsearch 1.4.2 and Marvel/Sense | |
| # Installation: http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/_installing_elasticsearch.html |