You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
913 B
Markdown

# 베포 스크립트 가이드
> /application/adds/tomcat에 배포 스크립트를 추가
### 0. war 파일 upload
> /application/adds 에 adds-fo.war 파일을 업로드
### 1. application deploy
> /application/adds/tomcat/webapps/ROOT.war_backup 삭제
> /application/adds/adds-fo.war -> /application/adds/tomcat/webapps/ROOT.war로 이동
> tomcat shutdown
> /application/adds/tomcat/webapps/ROOT 폴더 삭제
```shell
$ /application/adds/tomcat/deploy.sh
```
### 2. application start
```shell
$ /application/adds/tomcat/start.sh
```
### 3. stop
```shell
$ /application/adds/tomcat/stop.sh
```
### shell script 실행시 에러 조치
> then ^M .... 에러 발생시
> window에서 작성된 shell script를 linux에서 실행시 발생하는 에러
> \r문자가 포함되어 있어서 발생하는 에러
```shell
$ dos2unix 파일명.sh
# dos2unix 설치
$ sudo yum install dos2unix
```