메뉴 건너뛰기

Bigdata, Semantic IoT, Hadoop, NoSQL

Bigdata, Hadoop ecosystem, Semantic IoT등의 프로젝트를 진행중에 습득한 내용을 정리하는 곳입니다.
필요한 분을 위해서 공개하고 있습니다. 문의사항은 gooper@gooper.com로 메일을 보내주세요.


1. tomcat7 설치

sudo apt-get install tomcat7 tomcat7-admin하면 /usr/share/tomcat7에 설치됨

설치후에 http://localhost:8080/하면 It works !페이지가 보인다.

이때. 

tomcat home은 /usr/share/tomcat7 

tomcat 설정은 /etc/tomcat7

tomcat 로그는 /var/log/tomcat7

tomcat document root directory는 /var/lib/tomcat7/webapps에 있다.


* tomcat기동 : service tomcat7 start

* tomcat다운 : service tomcat7 stop 


* 설치중 오류발생시 systemctl status tomcat7.service를 실행하여 확인후 조치한다.

root@gsda1:/var/lib/dpkg/info# systemctl status tomcat7.service
[0m tomcat7.service - LSB: Start Tomcat.
   Loaded: loaded (/etc/init.d/tomcat7; bad; vendor preset: enabled)
   Active: failed (Result: exit-code) since Tue 2017-05-02 07:50:08 UTC; 51s ago
     Docs: man:systemd-sysv-generator(8)
  Process: 925 ExecStart=/etc/init.d/tomcat7 start (code=exited, status=1/FAILURE)

May 02 07:50:08 sda1 systemd[1]: Starting LSB: Start Tomcat....
May 02 07:50:08 sda1 tomcat7[925]:  * no JDK or JRE found - please set JAVA_HOME
May 02 07:50:08 sda1 systemd[1]: tomcat7.service: Control process exited, code=exited status=1
May 02 07:50:08 sda1 systemd[1]: Failed to start LSB: Start Tomcat..
May 02 07:50:08 sda1 systemd[1]: tomcat7.service: Unit entered failed state.
May 02 07:50:08 sda1 systemd[1]: tomcat7.service: Failed with result 'exit-code'.
root@gsda1:/var/lib/dpkg/info# service tomcat7 start
Job for tomcat7.service failed because the control process exited with error code. See "systemctl status tomcat7.service" and "journalctl -xe" for details.

* JAVA_HOME이 설정되어 있는데도 불구하고 위오아 같은 오류가 발생하면 http://zipeya.tistory.com/entry/ubuntu-1404-LTS%EC%97%90-tomcat7-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0 를 참조하여

vi /etc/default/tomcat7하여 기동스크립트의 JAVA_HOME값을 설정하여 준다.

그리고 sudo service tomcat7 start 로 tomcat을 재기동 해준다.



2. mod_jk 설치

sudo apt-get install libapache2-mod-jk로 설치하면 설치후 /etc/apache2/mods-available에 자동으로 들어감


3. workers.properties 설정

sudo vi /etc/libapache2-mod-jk/workers.properties 해서 아래의 색상이 있는 부분을 적절하게 수정한다.

-----------------------------------------------------------------------

# OPTIONS ( very important for jni mode ) 


#

# workers.tomcat_home should point to the location where you

# installed tomcat. This is where you have your conf, webapps and lib

# directories.

#

workers.tomcat_home=/usr/share/tomcat7


#

# workers.java_home should point to your Java installation. Normally

# you should have a bin and lib directories beneath it.

#

workers.java_home=/usr/lib/jvm/java-8-oracle

#

# You should configure your environment slash... ps= on NT and / on UNIX

# and maybe something different elsewhere.

#

ps=/

...

....

....

....

#

# The workers that your plugins should create and work with

worker.list=ajp13_worker

-----------------------------------------------------------------------------------------


4. tomcat의 server.xml파일 수정

sudo vi /var/lib/tomcat7/conf/server.xml

에서 아래 부분이 주석이 되어 있는데.. 주석을 풀어준다. 해당라인이 없으면 추가해준다.
<!-- Define an AJP 1.3 Connector on port 8009 -->
    <!--
    <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
    -->
============>
<!-- Define an AJP 1.3 Connector on port 8009 -->
    <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />

5. JKMount설정
sudo vi /etc/apache2/mods-available/jk.conf을 열어서 </VirtualHost>바로 윗줄에 JKMount /* ajp13_worker를 추가한다.
--------------------------------------------------------
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

JKMount /* ajp13_worker
</VirtualHost>
-------------------------------------------------


apache관련 명령
hadoop@bigdata-host:/etc/apache2$ apachectl
Usage: /usr/sbin/apachectl start|stop|restart|graceful|graceful-stop|configtest|status|fullstatus|help
       /usr/sbin/apachectl <apache2 args>
       /usr/sbin/apachectl -h            (for help on <apache2 args>)

tomcat관련 명령
/usr/share/tomcat7/bin 에서 startup.sh과 shutdown.sh을 이용하면.. bug에 의한 오류가 발생하므로....service tomcat7 restart를 사용한다.

-------------------------------------------------------------------------------------------------------------------------------------------------
hadoop@bigdata-host:~/flume$ sudo service tomcat7 restart
 * Stopping Tomcat servlet engine tomcat7                                                                                 [ OK ] 
 * Starting Tomcat servlet engine tomcat7                                                                                 [ OK ] 
-------------------------------------------------------------------------------------------------------------------------------------------------

6. tomcat manager및 host-manager 화면 접근방법

  가. /etc/tomat7/tomcat-users.xml에서 주석으로 막혀있는 사용자및 패스워드 설정에 대한 주석을 제거하고

       manager화면접근을 위해서

         <role rolename="manager-gui"/>와   <user username="admin" password="admin" roles="manager-gui"/>를 추가하고

       host-manager에 접근하기 위해서

          <role rolename="admin-gui"/>와 <user username="admin" password="admin" roles="admin-gui"/>를 추가하고

      저장한다.

  나. service tomcat7 restart하여 반영하여 준다.

  다. http://localhost:8080/manager/html/로 접근하여 id및 패스워드를 입력한다.

------------------------/etc/tomcat7/tomcat-users.xml--------------------------

<tomcat-users>
<!--
  NOTE:  By default, no user is included in the "manager-gui" role required
  to operate the "/manager/html" web application.  If you wish to use this app,
  you must define such a user - the username and password are arbitrary.
-->
<!--
  NOTE:  The sample user and role entries below are wrapped in a comment
  and thus are ignored when reading this file. Do not forget to remove
  <!.. ..> that surrounds them.
-->
<!--  -->
  <role rolename="tomcat"/>
  <role rolename="role1"/>
  <role rolename="manager-gui"/>

  <role rolename="admin-gui"/>

  <user username="tomcat" password="tomcat" roles="tomcat"/>
  <user username="both" password="tomcat" roles="tomcat,role1"/>
  <user username="role1" password="tomcat" roles="role1"/>
  <user username="admin" password="admin" roles="manager-gui"/>

  <user username="admin" password="admin" roles="admin-gui"/>

<!---->
</tomcat-users>

번호 제목 글쓴이 날짜 조회 수
740 bananapi 5대(ubuntu계열 리눅스)에 yarn(hadoop 2.6.0)설치하기-ResourceManager HA/HDFS HA포함, JobHistory포함 총관리자 2015.04.24 19143
739 mapreduce appliction을 실행시 "is running beyond virtual memory limits" 오류 발생시 조치사항 총관리자 2017.05.04 16896
738 org.apache.hadoop.hdfs.server.common.InconsistentFSStateException: Directory /tmp/hadoop-root/dfs/name is in an inconsistent state: storage directory does not exist or is not accessible. 구퍼 2013.03.11 14781
737 drop table로 삭제했으나 tablet server에는 여전히 존재하는 테이블 삭제방법 총관리자 2021.07.09 7553
736 insert hbase by hive ... error occured after 5 hours..HMaster가 뜨지 않는 장애에 대한 복구 방법 총관리자 2014.04.29 7129
735 Resource temporarily unavailable(자원이 일시적으로 사용 불가능함) 오류조치 총관리자 2015.11.19 6826
734 HBase shell로 작업하기 구퍼 2013.03.15 5834
733 dr.who로 공격들어오는 경우 조치방법 file 총관리자 2018.06.09 5603
732 하둡 분산 파일 시스템을 기반으로 색인하고 검색하기 구퍼 2013.03.15 5573
731 [Decommission]시 시간이 많이 걸리면서(수일) Decommission이 완료되지 않는 경우 조치 총관리자 2018.01.03 5305
730 Ubuntu 16.04LTS 설치후 초기에 주어야 하는 작업(php, apache, mariadb설치및 OS보안설정등) file 총관리자 2017.05.23 5268
729 hive 2.0.1 설치및 mariadb로 metastore 설정 총관리자 2016.06.03 5184
728 Hive Query Examples from test code (2 of 2) 총관리자 2014.03.26 5005
727 Spark에서 Serializable관련 오류및 조치사항 총관리자 2017.04.21 4901
726 [gson]mongodb의 api를 이용하여 데이타를 가져올때 "com.google.gson.stream.MalformedJsonException: Unterminated object at line..." 오류발생시 조치사항 총관리자 2017.12.11 4398
725 import 혹은 export할때 hive파일의 default 구분자는 --input-fields-terminated-by "x01"와 같이 지정해야함 총관리자 2014.05.20 4244
724 checking for termcap functions library... configure: error: No curses/termcap library found 구퍼 2013.03.08 4120
723 sqoop작업시 hdfs의 개수보다 더많은 값이 중복되어 oracle에 입력되는 경우가 있음 총관리자 2014.09.02 4093
722 다수의 로그 에이전트로 부터 로그를 받아 각각의 파일로 저장하는 방법(interceptor및 multiplexing) 총관리자 2014.04.04 4089
721 .git폴더를 삭제하고 다시 git에 추가하고 서버에 반영하는 방법 총관리자 2017.06.19 4077

A personal place to organize information learned during the development of such Hadoop, Hive, Hbase, Semantic IoT, etc.
We are open to the required minutes. Please send inquiries to gooper@gooper.com.

위로