Changes between Version 4 and Version 5 of Hinet130923/Lab9


Ignore:
Timestamp:
Sep 24, 2013, 10:52:02 AM (11 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Hinet130923/Lab9

    v4 v5  
    4444user@node1:~$ hadoop-daemon.sh start tasktracker
    4545}}}
     46
     47== <補充> Apache Proxy ==
     48
     49 * 讓 http://node50.3du.me/hdfs 等於 http://node50.3du.me:50070
     50 * 讓 http://node50.3du.me/mapred 等於 http://node50.3du.me:50030
     51
     52{{{
     53user@node50:~$ sudo apt-get install apache2                                                         
     54user@node50:~$ sudo a2enmod proxy_http                                                             
     55user@node50:~$ sudo vi /etc/apache2/sites-enabled/000-default                                       
     56user@node50:~$ sudo service apache2 restart                                                         
     57}}}
     58{{{
     59#!text
     60    <Location /hdfs>
     61      ProxyPass   http://localhost:50070
     62      Order       allow,deny
     63      Allow       from all
     64    </Location>
     65                                                                                                   
     66    <Location /mapred>
     67      ProxyPass   http://localhost:50030
     68      Order       allow,deny
     69      Allow       from all
     70    </Location>
     71}}}