Tart setting

## 타르트 가상환경 실행 ```bash nohup tart run everycharge ``` --- ## 가상환경 내부 팀시티 에이전트 실행 ```bash cd ~/buildAgentFull/bin ./agent.sh start ``` --- ## 가상환경 내부 환경 설정 ### Ruby rbenv - ruby 2.7.5 ### Node nvm - node 18 ### 심볼릭 링크 추가 error: Can't find 'node' binary to build React Native bundle If you have non-standard nodejs installation, select your project in Xcode, find 'Build Phases' - 'Bundle React Native code and images' and change NODE_BINARY to absolute path to your node executable (you can find it by invoking 'which node' in the terminal) `ln -s $(which node) /usr/local/bin/node` ### 안드로이드 스튜디오 설치 후 android sdk 환경을 못잡으면 역시 심볼릭 링크로 우회 ```bash ln -s /Users/admin/Library/Android/sdk /Users/admin/android-sdk ``` ### 키 스토어 및 Fastlane credential 설치 구글드라이브 - https://drive.google.com/drive/u/1/folders/1OrNZ8SfhIjg5lIQLMx3csNEPQdRFpUKH 디렉토리 위치 : /Users/admin/EveryCharge.keystore ### 백업 이미지 https://drive.google.com/drive/folders/1KWa5g1VL8uk-cAH...

apache httpd, tomcat 연동

아파치, 톰캣, mod_jk 설치

1. 압축해제

tar -zxvf tomcat-connectors.tar

2. mod_jk 소스의(방금 압축 푼 커넥터) native 디렉터리로 이동한 뒤 configure 명령 실행

./configure --with-apxs=아파치/bin/apxs

tip : find / -name apxs

3. configure 을 통해 설정이 끝나면 make 으로 컴파일

make

4. make 후 make install 으로 코드 설치

make install

5. 설치가 되면 아파치 디렉터리에 모듈 생성됨.

6. connectors 소스의 apache-2.0 디렉터리에 있는 mod_jk.so를 apache httpd 서버의 modules 디렉토리로 복사

7. mod_jk.so 의 권한 설정

chmod 755 mod_jk.so
chown root:root mod_jk.so

8. httpd 서ㅓ 설정 편집을 위해 apache 서버의 conf 디렉토리에서
vim mod_jk.conf

LoadModule jk_module modules/mod_jk.so
JkWorkersFile conf/workers.properties
JkLogFile logs/mod_jk.log
JkLogLevel info
JkMount /* node1

//위의 텍스트 설명
LoadModule : 모듈 경로 - 아파치를 시작할 때 모듈을 로드할 위치 정의
JkWorkersFile : 작업자 파일 경로 - 작업자 파일 위치 정의. 작업자 파일은 톰캣 인스턴스 IP, port, road ballancing 정보 포함.
JkLogFile : 로그 파일 경로
JkMount : URL 매핑 - 정의된 URL 요청 재전송 규칙 정의. 위의 경우는 /*의 경로를 입력했을 때 해당 요청을 톰캣 node1로 재전송.
JkLogLevel : 로그 수준 : mod_jk에서 수행하는 다양한 이벤트를 logs가 어떻게 처리할지를 정의



9. conf 디렉토리에 workers.properties 파일 생성

vim workers.properties

worker.list=node1
worker.node1.port=8009
worker.node1.host=localhost
worker.node1.type=ajp13
worker.node1.lbfactor=1

//위의 텍스트 설명
노드 이름
톰캣에서 ajp 요청을 어떤 포트로 수락하는지
톰캣 호스트 ip
사용중인 프로토콜. 보통 ajp13 사용. ajp12는 예전 버전, ajp14는 개발중인 버전(upcomming)
부하 분산 방법(라운드 로빈, 연결 지속 등)

10.아파치, 톰캣 실행
아파치 : bin 폴더에서 ./apachectl start //종료는 stop
톰캣 : bin 폴더에서 ./startup.sh


reference
타누즈 카르 - 아파치 톰캣 7 따라잡기

Comments

Popular posts from this blog

카카오 내비 리엑트 네이티브 모듈 만들기 ft.코틀린

Operating System Concepts 9th

Operating System Concept