-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBigData.html
138 lines (110 loc) · 3.46 KB
/
BigData.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Big Data</title>
<meta name="generator" content="emacs-wiki.el" />
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8" />
<link rel="made" href="mailto:cyberpsyche[AT]gmail.com" />
<link rel="home" href="WelcomePage.html" />
<link rel="index" href="WikiIndex.html" />
<link rel="stylesheet" type="text/css" href="main.css"><script type="text/javascript">
function showToolTip(machaine) {
if (machaine != "") {
document.getElementById('tooltip').innerHTML = machaine;
document.getElementById('tooltipbox').style.visibility = 'visible';
}
}
function hide() {
document.getElementById('tooltip').innerHTML = '';
document.getElementById('tooltipbox').style.visibility = 'hidden';
}
</script>
<div class="menu">
<div class="menuitem">
<a href="WelcomePage.html">Wiki</a>
</div>
<div class="menuitem">
<a href="">work</a>
</div>
</div><!-- menu ends here -->
<div id="tooltipbox">
<div id="tooltip"></div>
</div>
</head>
<body>
<h1 id="top">Big Data</h1>
<!-- Page published by Emacs Wiki begins here -->
<h3>Zookeeper</h3>
<h4>配置文件 conf/zoo.cfg</h4>
<pre class="example">tickTime=2000
dataDir=/var/lib/zookeeper
clientPort=2181
</pre>
<h4>启动 Server</h4>
<p>
bin/zkServer.sh start
</p>
<h4>启动 Client</h4>
<p>
bin/zkCli.sh -server 127.0.0.1:2181
</p>
<h3>Storm</h3>
<h4>配置文件 conf/storm.yaml</h4>
<pre class="example">storm.zookeeper.servers:
- "111.222.333.444"
- "555.666.777.888"
storm.local.dir: "/mnt/storm"
nimbus.host: "111.222.333.44"
supervisor.slots.ports:
- 6700
- 6701
- 6702
- 6703
</pre>
<h4>run the Storm daemons</h4>
<p>
nimbus : bin/storm nimbus
</p>
<p>
supervisor : bin/storm supervisor
</p>
<p>
UI : bin/storm ui (access via <a href="http://127.0.0.1:8080/">http://127.0.0.1:8080/</a>)
</p>
<h4>logs</h4>
<p>
logs located in ./logs directory.
</p>
<!-- Page published by Emacs Wiki ends here -->
<div class="navfoot">
<hr />
<table width="100%" border="0" summary="Footer navigation">
<col width="33%"/><col width="34%"/><col width="33%"/>
<tr>
<td align="left">Update : 2016-05-23
</td>
<td align="center">
<span class="foothome">
<a href="WelcomePage.html">Home</a> / <a href="WikiIndex.html">Index</a>
</span>
</td>
<td align="right">
cyberpsyche[AT]gmail.com
</td>
</tr>
</table>
<center>
Based on
<a href="http://www.debian.org"><img style="border: 0em none;" src="images/debianLogo.png" alt="Debian Logo" /></a>
<a href="http://www.debian.org"><img style="border: 0em none;" src="images/debian.png" alt="Debian Text Logo" /></a>
GNU/Linux and <a href="http://www.apple.com"><img style="border: 0em none;" src="images/MacLogo.jpg" alt="Mac Logo" /></a>OS X| Powered by
<a href="http://www.gnu.org/software/emacs"><img style="border: 0em none;" src="images/emacs.gif" alt="Emacs Logo" /></a> |
Best view with
<a href="http://www.getfirefox.com/"><img style="border: 0em none;" src="images/getFirefox.gif" alt="Firefox Logo" /></a>
</center>
</div>
</body>
</html>