본문 바로가기
Tool/YONA . YOBI

Yobi / CentOS 6.5 64bit

by 하하IT 2020. 4. 24.

Yobi 설치 (CentOS 6.5 64bit)

 

1. CentOS 설치 후 yum update 완료후

 

2. 별도 dir  mount  ex) /APP

 

3. java -version

  jre 미설치시   

 

  설치가능 버전 확인

[root@localhost ~]# yum list java*jdk-devel

Loaded plugins: fastestmirror

Loading mirror speeds from cached hostfile

 * base: centos.mirror.cdnetworks.com

 * extras: centos.mirror.cdnetworks.com

 * updates: centos.mirror.cdnetworks.com

Available Packages

java-1.6.0-openjdk-devel.x86_64                                     1:1.6.0.41-1.13.13.1.el7_3                                      base

java-1.7.0-openjdk-devel.x86_64                                     1:1.7.0.171-2.6.13.0.el7_4                                      updates

java-1.8.0-openjdk-devel.i686                                       1:1.8.0.161-0.b14.el7_4                                         updates

java-1.8.0-openjdk-devel.x86_64                                     1:1.8.0.161-0.b14.el7_4                                         updates

[root@localhost ~]#

[root@localhost ~]# yum -y install java-1.8.0-openjdk-devel.x86_64

 

 

      yum install -y java-1.7.0-openjdk.x86_64   java-1.7.0-openjdk-devel

 

4.playframework 내려 받기 

    yum install -y wget

 

  wget http://downloads.typesafe.com/play/2.1.0/play-2.1.0.zip

 

5. 압축풀기

     yum install -y unzip

   unzip play-2.1.0.zip

 

6.하위디렉토리로 이동

  cd play-2.1.0

 

7. yobi 소스 내려 받기

     yum install -y git

  git clone https://github.com/nforge/yobi.git

 

8.clone 받은 yobi 디렉터리로 이동

   cd yobi

 

9.상단에 있는 play 실행파일 실행

 

../play   

 ==> 몇분가량 소요됨

 

10.콘솔이 뜨면 run 명령어로 기동

 

 

play! 2.1.0 (using Java 1.7.0_51 and Scala 2.10.0), http://www.playframework.org

 

> Type "help play" or "license" for more information.

> Type "exit" or use Ctrl+D to leave this console.

 

[yobi] $ run

추가로 필요한 파일들을 web에서 내려받은 다음 소스 파일들을 컴파일 후 개발 모드로 실행합니다. 

운영 모드(production mode)로 실행하고자 할 경우에는 run 명령어 대신에 start 명령어로 실행합니다

 

11. 브라우져로 접속

http://127.0.0.1:9000

  포트변경은 http://www.playframework.com/documentation/2.1.1/Production 에서 확인

'Tool > YONA . YOBI' 카테고리의 다른 글

svn backup  (0) 2020.04.26
YONA / backup / restore  (0) 2020.04.17