歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> CentOS上安裝Mesos和實例測試

CentOS上安裝Mesos和實例測試

日期:2017/2/28 14:28:36   编辑:Linux教程

1 安裝Mesos

在CentOS上安裝Mesos,可以分為下面幾個步驟。

必要的系統工具和庫,運行下面的命令即可。

$sudo yum groupinstall "Developmenttools"
$sudo yum installjava-1.6.0-openjdk.x86_64 java-1.6.0-openjdk-devel.x86_64 python python-devel libcurllibcurl-devel

下載mesos源碼,安裝mesos命令行步驟:

$wget http://www.apache.org/dist/mesos/0.19.0/mesos-0.19.0.tar.gz
$tar -zxf mesos-0.19.0.tar.gz
$mv mesos-0.19.0 mesos
#./configure --prefix=/opt/mesos &&make && make check && make install
./configure --prefix=/opt/mesos &&make && make install

注意:

1. 編譯過程中,會報一個錯誤,javadoc引用出錯。解決方法是,直接進入src/java目錄下,mesos.pom文件中,注釋掉這行記錄就可以了。

2. 如果時間不是那麼充裕,可以不運行make check驗證命令。原因是它將耗費好長的時間來執行驗證腳本程序。

2 實例測試

Mesos實例有用C++, Java和Python編寫,操作步驟如下:

# Change into build directory.
$ cd build

# Start mesos master (***Ensure work directory exists and has proper permissions***).
$ ./bin/mesos-master.sh --ip=127.0.0.1 --work_dir=/var/lib/mesos

# Start mesos slave.
$ ./bin/mesos-slave.sh --master=127.0.0.1:5050

# Visit the mesos web page.
$ http://127.0.0.1:5050

C++實例:

# Run C++ framework (***Exits after successfully running some tasks.***).
$ ./src/test-framework --master=127.0.0.1:5050
I0721 11:06:55.031108 6857 sched.cpp:126] Version: 0.19.0
I0721 11:06:55.035475 6883 sched.cpp:222] New master detected [email protected]:5050
I0721 11:06:55.036548 6883 sched.cpp:230] No credentials provided.Attempting to register without authentication
I0721 11:06:55.040148 6883 sched.cpp:397] Framework registered with20140721-110017-16777343-5050-6678-0001
Registered!
.Starting task 0 on Hadoop-master
Task 0 is in state 1
Task 0 is in state 2
.Starting task 1 on hadoop-master
Task 1 is in state 1
Task 1 is in state 2
.Starting task 2 on hadoop-master
Task 2 is in state 1
Task 2 is in state 2
.Starting task 3 on hadoop-master
Task 3 is in state 1
Task 3 is in state 2
.Starting task 4 on hadoop-master
Task 4 is in state 1
Task 4 is in state 2
I0721 11:06:59.736284 6880 sched.cpp:730] Stopping framework'20140721-110017-16777343-5050-6678-0001'

Java實例:

# Run Java framework (***Exits after successfully running some tasks.***).
$ ./src/examples/java/test-framework 127.0.0.1:5050
略…

Python實例:

# Run Python framework (***Exits after successfully running some tasks.***).
$ ./src/examples/python/test-framework 127.0.0.1:5050
[app@hadoop-mastermesos]$ ./src/examples/python/test-framework 127.0.0.1:5050
I072111:05:07.645002 6807 sched.cpp:126]Version: 0.19.0
I072111:05:07.650837 6813 sched.cpp:222] Newmaster detected at [email protected]:5050
I072111:05:07.652999 6813 sched.cpp:230] Nocredentials provided. Attempting to register without authentication
I072111:05:07.659893 6813 sched.cpp:397]Framework registered with 20140721-110017-16777343-5050-6678-0000
Registeredwith framework ID 20140721-110017-16777343-5050-6678-0000
Got1 resource offers
Gotresource offer 20140721-110017-16777343-5050-6678-0
Acceptingoffer on hadoop-master to start task 0
Task0 is in state 1
Task0 is in state 2
Receivedmessage: 'data with a \x00 byte'
Got1 resource offers
Gotresource offer 20140721-110017-16777343-5050-6678-1
Acceptingoffer on hadoop-master to start task 1
Task1 is in state 1
Task1 is in state 2
Receivedmessage: 'data with a \x00 byte'
Got1 resource offers
Gotresource offer 20140721-110017-16777343-5050-6678-2
Acceptingoffer on hadoop-master to start task 2
Task2 is in state 1
Task2 is in state 2
Receivedmessage: 'data with a \x00 byte'
Got1 resource offers
Gotresource offer 20140721-110017-16777343-5050-6678-3
Acceptingoffer on hadoop-master to start task 3
Task3 is in state 1
Task3 is in state 2
Receivedmessage: 'data with a \x00 byte'
Got1 resource offers
Gotresource offer 20140721-110017-16777343-5050-6678-4
Acceptingoffer on hadoop-master to start task 4
Task4 is in state 1
Task4 is in state 2
Alltasks done, waiting for final framework message
Receivedmessage: 'data with a \x00 byte'
Alltasks done, and all messages received, exiting
I072111:05:14.626263 6817 sched.cpp:730]Stopping framework '20140721-110017-16777343-5050-6678-0000'

Mesos安裝詳解(RedHat 6.1) http://www.linuxidc.com/Linux/2012-02/55421.htm

Copyright © Linux教程網 All Rights Reserved