This is an automated email from the ASF dual-hosted git repository.

javiroman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-myriad.git


The following commit(s) were added to refs/heads/master by this push:
     new f4171fb  MYRIAD-282 Add key information in Vagrant -> libvirt -> mesos 
(#120)
f4171fb is described below

commit f4171fbb39d36bb397303e988620da0e63b1f111
Author: Javi Roman <jroman.espi...@gmail.com>
AuthorDate: Mon Dec 17 21:01:19 2018 +0100

    MYRIAD-282 Add key information in Vagrant -> libvirt -> mesos (#120)
    
    Updated some instructions in Vagrant (libvirt) for Mesos in
    order to match 1.5.x Mesos version. Included key instructions
    about MESOS_NATIVE_JAVA_LIBRARY inclusion as well.
    
    JIRA:
        [MYRIAD-282] https://issues.apache.org/jira/browse/MYRIAD-282
---
 vagrant/libvirt/mesos/README.md | 79 +++++++++++++++++++++++++++++++++++++++--
 1 file changed, 76 insertions(+), 3 deletions(-)

diff --git a/vagrant/libvirt/mesos/README.md b/vagrant/libvirt/mesos/README.md
index a2939d2..2cddf65 100644
--- a/vagrant/libvirt/mesos/README.md
+++ b/vagrant/libvirt/mesos/README.md
@@ -86,7 +86,7 @@ build Myriad framework as follow:
 
 ```
 [vagrant@build ~]$ cd /opt/mesos
-[vagrant@build ~]$ git checkout 0.28.1
+[vagrant@build ~]$ git checkout tags/1.5.0 -b 1.5.0
 [vagrant@build ~]$ ./bootstrap
 [vagrant@build ~]$ mkdir build
 [vagrant@build ~]$ cd build
@@ -127,7 +127,7 @@ Mesos folder. Let see who to run the 3rdparty Zookeeper 
shipped with Mesos.
 
 ```
 $ vagrant ssh mesos-m1
-[vagrant@mesos-m1 ~]$ cd /opt/mesos/build/3rdparty/zookeeper-3.4.5/
+[vagrant@mesos-m1 ~]$ cd /opt/mesos/build/3rdparty/zookeeper-3.4.8/
 [vagrant@mesos-m1 zookeeper-3.4.5]$ cp conf/zoo_sample.cfg conf/zoo.cfg
 [vagrant@mesos-m1 zookeeper-3.4.5]$ echo "server.1=mesos-m1:2888:3888" >> 
conf/zoo.cfg
 [vagrant@mesos-m1 zookeeper-3.4.5]$ bin/zkServer.sh start
@@ -151,7 +151,7 @@ imok
 
 ```
 [vagrant@mesos-a1 ~]$ cd /opt/mesos/build
-[vagrant@mesos-a1 build]$ sudo ./bin/mesos-slave.sh 
--master=zk://mesos-m1:2181/mesos --work_dir=/var/lib/mesos
+[vagrant@mesos-a1 build]$ sudo ./bin/mesos-slave.sh 
--master=zk://mesos-m1:2181/mesos --work_dir=/var/lib/mesos 
--resources='mem:4000'
 ```
 
 *Note*: mesos-slave.sh was changed for newer versions of Mesos for 
mesos-agent.sh
@@ -205,6 +205,13 @@ with Hadoop.
 
 - At mesos-m1:
 
+You have to insert the following environment variable:
+
+```
+[vagrant@mesos-m1 ~]$ grep MESOS /opt/hadoop/etc/hadoop/hadoop-env.sh
+export MESOS_NATIVE_JAVA_LIBRARY=/opt/mesos/build/src/.libs/libmesos.so
+```
+
 ```
 cd /opt
 
@@ -268,6 +275,72 @@ sudo firewall-cmd --reload
 sudo firewall-cmd --list-all
 ```
 
+# Stopping VMs and starting 
+
+When you stop/start the VMs
+
+```
+$ vagrant halt
+$ vagrant up
+```
+
+You have to start manually some of the daemons in order to continue
+The operation such as the provisioning phase did it. You have to
+follow the following steps:
+
+- Start Zookeeper:
+
+```
+$ vagrant ssh mesos-m1
+[vagrant@mesos-m1 ~]$ cd /opt/mesos/build/3rdparty/zookeeper-3.4.8/
+[vagrant@mesos-m1 zookeeper-3.4.5]$ bin/zkServer.sh start
+[vagrant@mesos-m1 zookeeper-3.4.5]$ echo ruok | nc 127.0.0.1 2181
+imok
+```
+
+- Start Hadoop
+
+```
+$ vagrant ssh mesos-m1
+[vagrant@mesos-m1 ~]$ su - hdfs (vagrant password)
+[hdfs@mesos-m1 ~]$ cd /opt/hadoop
+[hdfs@mesos-m1 hadoop]$ sbin/start-dfs.sh
+Starting namenodes on [mesos-m1]
+mesos-m1: starting namenode, logging to 
/opt/hadoop/logs/hadoop-hdfs-namenode-mesos-m1.out
+mesos-a2: starting datanode, logging to 
/opt/hadoop/logs/hadoop-hdfs-datanode-mesos-a2.out
+mesos-a4: starting datanode, logging to 
/opt/hadoop/logs/hadoop-hdfs-datanode-mesos-a4.out
+mesos-a3: starting datanode, logging to 
/opt/hadoop/logs/hadoop-hdfs-datanode-mesos-a3.out
+Starting secondary namenodes [0.0.0.0] 0.0.0.0: starting secondarynamenode, 
logging to /opt/hadoop/logs/hadoop-hdfs-secondarynamenode-mesos-m1.out 
+[hdfs@mesos-m1 hadoop]$ jps
+11872 Jps
+11756 SecondaryNameNode
+11550 NameNode
+```
+
+- Start Mesos: Master at mesos-m1
+
+```
+$ vagrant ssh mesos-m1
+[vagrant@mesos-m1 ~]$ cd /opt/mesos/build
+[vagrant@mesos-m1 build]$ sudo ./bin/mesos-master.sh --ip=100.0.10.101 
--work_dir=/var/lib/mesos --zk=zk://mesos-m1:2181/mesos --quorum=1
+```
+
+- Start Mesos: Agents at mesos-a[1..4]:
+
+```
+[vagrant@mesos-a1 ~]$ cd /opt/mesos/build
+[vagrant@mesos-a1 build]$ sudo ./bin/mesos-slave.sh 
--master=zk://mesos-m1:2181/mesos --work_dir=/var/lib/mesos 
--resources='mem:4000'
+```
+
+- Start YARN Resource Manager:
+
+```
+$ vagrant ssh mesos-m1
+[vagrant@mesos-m1 ~]$ su - yarn (vagrant password)
+[yarn@mesos-m1 ~]$ cd /opt/hadoop
+[yarn@mesos-m1 ~]$ sbin/yarn-daemon.sh --config /opt/hadoop/etc/hadoop/ start 
resourcemanager && tail -f logs/yarn-yarn-resourcemanager-mesos-m1.log
+```
+
 # Happy Hacking
 
 At this point you have a local development environment ready for Myriad

Reply via email to