2.ZeroMQ installation
Copy the installation file zeromq-2.1.7.tar.gz to the home file path.
Add permissions to files
chmod +x /home/
zeromq-2.1.7.tar.gz
unzip files
tar -xzf /home/
zeromq-2.1.7.tar.gz
Enter the file path to install
cd /home/
zeromq-2.1.7
./configure
make
sudo make install
Installed
(
An error uuid not found will be reported here. At this time, you need to install the util-linux-2.21.1.tar.gz file. Unzip it with the same installation steps, and then enter the decompressed folder
./configure –without-ncureses
make
sudo make install
Then just install zeromq
)
3.JZMQ installation
First enter the home path
cd /home
Download installation files
git clone
https://github.com/nathanmarz/jzmq.git
Enter the jzmq file
cd jzmq
Install
./autogen.sh
./configure
make
sudo make install
Installed
4.Python installation
Copy the file to the home folder
Enter the home folder
cd /home
Add permissions
chmod +x Python-2.7.6.tgz
unzip files
tar zxvf
Python-2.7.6.tgz
Install
cd Python-2.6.6
./configure
make
make install
After the installation is complete, test whether the installation is successful
python -V
Python 2.7.6
Installed
5. I have already installed the Java environment when building Hadoop before, so I won’t go into details here.