'개발/WAS'에 해당되는 글 3건

반응형

java 설치 및 java 환경 변수 설정 완료 기준으로 설명하겠습니다.

 

 

  • apache 및 gcc 설치
    • $ yum -y install httpd httpd-devel gcc gcc-c++
  • tomcat connectors 다운로드 및 설치
    • 다운로드
      wget https://archive.apache.org/dist/tomcat/tomcat-connectors/jk/tomcat-connectors-1.2.48-src.tar.gz
    • 압축 해제
      $ tar zxvf tomcat-connectors-1.2.48-src.tar.gz
    • 이동
      $ cd tomcat-connectors-1.2.48-src/native/
    • 설정
      $ ./configure --with-apxs=/bin/apxs
    • 빌드(설치 완료 후 mod_jk.so 파일 생성 완료)
      $ make / $make install
      (/usr/lib64/httpd/modules/mod_jk.so 설치 확인)
  • httpd.conf 설정(포트 및 jk_module 설정
    • 기본 설치 경로에 httpd.conf 수정

      $ vim /etc/httpd/conf/httpd.conf
    • 포트 변경(80 > 8081)

    • jk_module 추가
      httpd.conf 파일 제일 아래 아래 코드 추가

      LoadModule jk_module /usr/lib64/httpd/modules/mod_jk.so
      <lfModule jk_module>
          JkWorkersFile /etc/httpd/conf/workers.properties
          JkLogFile /var/log/httpd/mod_jk.log
          JkLogLevel info
          JkLogStampFormat "[%a %b %d %H:%M:%S %Y]"
          JkMount /* loadbalancer
      </IfModule>

  • workers.properties 파일 생성
    • vim /etc/httpd/conf/workers.properties
      아래 파일 파일 내용 추가

      worker.list=loadbalancer, jkstatus
      worker.jkstatus.type=status

      worker.loadbalancer.type=lb
      worker.loadbalancer.balance_workers=WAS1,WAS2
      worker.loadbalancer.sticky_session=1

      worker.WAS1.type=ajp13
      worker.WAS1.host=192.168.1.101 #was 1번 아이피
      worker.WAS1.port=8009             #ajp protocol port 번호 server.xml 파일 확인
      worker.WAS1.lbfactor=1

      worker.WAS2.type=ajp13
      worker.WAS2.host=192.168.1.101
      worker.WAS2.port=8009
      worker.WAS2.lbfactor=1
  • 세션클러스터링 설정
    • web.xml의 web-app 태그 안에 
      <distributable/> 추가
  • httpd 재시작
    • /usr/sbin/httpd -k restart
반응형

'개발 > WAS' 카테고리의 다른 글

jboss maxParameterCount 설정  (0) 2018.08.02
Linux Jeus7 설치  (0) 2018.08.02
블로그 이미지

민오라방구

개발 , 여행, 일상 아직 배울게 많은 개발자

,
반응형

java.lang.IllegalStateException: More than the maximum number of request parameters (GET plus POST) in jBoss AS 7.1



Following error occurs while submitting the request in jBoss AS 7.1.  

java.lang.IllegalStateException: More than the maximum number of request parameters (GET plus POST) for a single request ([512]) were detected. Any parameters beyond this limit have been ignored. To change this limit, set the maxParameterCount attribute on the Connector.

Explanation: jBoss limits the number of parameters to be sent to the server. The default value for the number of parameters is 512. I had a scenario where the number of fields were getting increased because of the business, which I could not control. I made the configuration to accept more number of parameters. Add the following piece of code in the standalone.xml file. 




<extensions> ....
</extensions>
 <system-properties>
        <property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="2000"/>
  </system-properties>
<management> ....
</management>


반응형

'개발 > WAS' 카테고리의 다른 글

apache + tomcat 로드밸런싱 & 세션 클러스터링  (0) 2021.03.16
Linux Jeus7 설치  (0) 2018.08.02
블로그 이미지

민오라방구

개발 , 여행, 일상 아직 배울게 많은 개발자

,

Linux Jeus7 설치

개발/WAS 2018. 8. 2. 15:21
반응형

/bridgetec/CatchAll/was/server

/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.79.x86_64



JDK 설치


-  JAVA SE 설치 링크

https://www.oracle.com/technetwork/java/javase/archive-139210.html



● JAVA_HOME / JEUS_HOME 환경 변수를 추가


- $ vi ~/.bash_profile


- export JAVA_HOME=/home/shonm/jdk1.7.0_80


   export JEUS_HOME=/home/shonm/jeus7


   PATH=$JAVA_HOME/bin:$PATH ~~~~~~~


- $ source .bash_profile



 Tmax 사이트에 접속하여 jeus7 버전을 다운


JEUS 7.0 Fix#4 다운

https://technet.tmaxsoft.com/ko/front/download/findDownloadList.do?cmProductCode=0101



 권한 부여


 - $ chmon +x jeus70_unux_generic_ko.bin



● 파일을 실행


- ./jeus70_unix_generic_ko.bin


- license에 동의 하느나? 

: y


- OS 종류 선택 

: Linux x64 를 선택


- jeus 설치 경로  

: /home/shonm/jeus7


- 서버 타입 선택


: Domain Admin Server(das)  인 1번 선택


- mode 선택    

: production mode 가 일반적


- JDK 의 PATH

: /home/shonm/jdk1.7.0_80


- 웹 콘솔 비밀번호 설정 

: administrator / jeusadmin


- domain 이름  

: jeus_domain


- node manager 

: ssh 는 권장 되지 않고 일반적으로 java 타입이 권장 됨



● source ~/.bash_profile



 startDomainAdminServer -domain jeus_domain -u administrator -p password으로 실행 시켜서 


- The server state is now Running메시지 출력시 실행 성공


- $ startManagedServer -domain jeus_domain -server server1 -u administrator -p iCatch2016

jeusadmin -u adminstrator -p password



 관리 UI 접근 방법


http://server_ip:9736/webadmin



 server shutdown


- $ stopServer -host localhost:9736 -u administrator -p password



 nodeManager 기동


- $JEUS_HOME/nodemanager/logs 폴더를 생성


- $ nohup startNodeManager > /home/shonm/jeus7/nodemanager/logs/nm.log &



 nodeManager shutdown 방법


- $ stopNodeManager -host localhost -port 7730

반응형

'개발 > WAS' 카테고리의 다른 글

apache + tomcat 로드밸런싱 & 세션 클러스터링  (0) 2021.03.16
jboss maxParameterCount 설정  (0) 2018.08.02
블로그 이미지

민오라방구

개발 , 여행, 일상 아직 배울게 많은 개발자

,