Last change
on this file since 146 was
143,
checked in by jazz, 15 years ago
|
細部微調
|
-
Property svn:executable set to
*
|
File size:
1.1 KB
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | mkdir -p /lib/jvm |
---|
3 | mkdir -p /opt |
---|
4 | |
---|
5 | if [ ! -x /lib/jvm/jdk* ]; then |
---|
6 | unzip /usr/src/jdk*.zip -d /lib/jvm/ |
---|
7 | fi |
---|
8 | |
---|
9 | if [ ! -x /opt/hadoop ]; then |
---|
10 | tar zxvf /usr/src/hadoop-*.tar.gz -C /opt/ |
---|
11 | ln -s /opt/hadoop-* /opt/hadoop |
---|
12 | cp -R /usr/src/conf-examples/ /opt/hadoop/ |
---|
13 | mv /opt/hadoop/conf/ /opt/hadoop/conf-org |
---|
14 | ln -s /opt/hadoop/conf-examples/ /opt/hadoop/conf |
---|
15 | fi |
---|
16 | |
---|
17 | export JAVA_HOME=$(dirname /lib/jvm/jdk*/bin/) |
---|
18 | echo export JAVA_HOME=$JAVA_HOME >> /opt/hadoop/conf/hadoop-env.sh |
---|
19 | echo export HADOOP_HOME=/opt/hadoop >> /opt/hadoop/conf/hadoop-env.sh |
---|
20 | echo export HADOOP_CLASSPATH=/opt/hadoop >> /opt/hadoop/conf/hadoop-env.sh |
---|
21 | echo export HADOOP_CONF_DIR=/opt/hadoop/conf >> /opt/hadoop/conf/hadoop-env.sh |
---|
22 | echo export JAVA_HOME=$JAVA_HOME >> /etc/profile |
---|
23 | echo "export PATH=/opt/hadoop/bin/:$JAVA_HOME/bin:\$PATH" >> /etc/profile |
---|
24 | cd $JAVA_HOME |
---|
25 | chmod a+x `find . -name "*.exe"` |
---|
26 | chmod a+x `find . -name "*.dll"` |
---|
27 | javac -version |
---|
28 | cd /opt/hadoop |
---|
29 | bin/hadoop namenode -format |
---|
30 | /bin/start-hadoop |
---|
31 | bin/hadoop fs -mkdir tmp |
---|
32 | echo "/bin/stop-hadoop" > ~/.bash_logout |
---|
33 | echo "/bin/stop-hadoop" > /etc/skel/.bash_logout |
---|
34 | cygstart http://localhost:50070 |
---|
35 | cygstart http://localhost:50030 |
---|
36 | exit |
---|
Note: See
TracBrowser
for help on using the repository browser.