brew install hadoop
- Check if Hadoop has been successfully installed:
hadoop version
- Add following three lines to your
~/.bash_profile
:
export HADOOP_PREFIX=/usr/local/Cellar/hadoop/1.1.2/
export JAVA_HOME=$(/usr/libexec/java_home)
Install SSH client and server:
sudo apt-get install openssh-client sudo apt-get install openssh-server
Adding a dedicated Hadoop system user:
$ sudo addgroup hadoop $ sudo adduser --ingroup hadoop hduser
Few links that should help you set up Ruby > 1.9 on your OS.
Following guidelines had been tested on:
GREEN=`tput setf 2` | |
WHITE=`tput setf 7` | |
PS1="\u:\w\$(git branch 2>/dev/null | grep -e '\* ' | sed 's/^..\(.*\)/\[$GREEN\]{\1}/') \[$WHITE\]\$ " |
<?php | |
/** | |
* | |
* Generates anchor HTML markup, which can perform GET/POST requests | |
* | |
* Example usage in the view | |
* <code> | |
* $this->linkTo( | |
'new', |
<?php | |
/* | |
* Zend Controller responsible for handling online payments. | |
* + Talking to PayPal API | |
* + Talking to PaymentSense API | |
* + Talking to SalesForce API | |
* + Auto-registering paying user with our system | |
* + Notifying about new lead | |
* | |
* @author Martynas Miliauskas <[email protected]> |