Ubuntu

bigbluebutton 화상회의 오픈소스

Naan 2015. 3. 25. 18:57
반응형

화상회의를 할수 있는 오픈소스 기반의 bigbluebutton이다.


가상화 vm 을 지원하니 이걸 다운받아서 설치하거나 하나씩 설치하면 된다.

귀찮으니 난 vm 으로

https://code.google.com/p/bigbluebutton/wiki/BigBlueButtonVM

최신 버전은 0.9.0 이지만 vm 버전은 0.8.1 이다

다운을 받아서 가상화에 넣고 부팅을 시키자


로그인 창이 뜬다

기본 계정은 : firstuser

기본 암호는 : default 

입력을 하면 새 암호를 넣으라고 한다 새로운 암호를 입력하자


부팅이 끝났다 IP셋팅을 하자

# vi /etc/network/interface

# This file describes the network interfaces available on your system

# and how to activate them. For more information, see interfaces(5).


# The loopback network interface

auto lo

iface lo inet loopback


# The primary network interface

auto eth0

iface eth0 inet static

address 192.168.0.33

netmask 255.255.255.0

network 192.168.0.0

broadcast 192.168.0.255

gateway 192.168.0.1


# vi /etc/resolv.conf

nameserver 168.126.63.1

nameserver 168.126.63.2


# /etc/init.d/networking restart

 * Reconfiguring network interfaces...                                          ssh stop/waiting

ssh start/running, process 3014

                                                                         [ OK ]

# ping google.com 

PING google.com (173.194.127.68) 56(84) bytes of data.
64 bytes from hkg03s11-in-f4.1e100.net (173.194.127.68): icmp_seq=1 ttl=51 time=72.6 ms
64 bytes from hkg03s11-in-f4.1e100.net (173.194.127.68): icmp_seq=2 ttl=51 time=49.9 ms

뜨면 정상적으로 셋팅이 된거다
만약에 ping 이 정상적으로 안된다면 ip셋팅 부분을 다시 확인 해보자

자 서비스를 구동해보자
#
# To launch BigBlueButton, open the following URL
#
#           http:///
#
# If this computer's IP/hostname changes, you can update
# all of BigBlueButton's configuration files with
#
#          bbb-conf --setip <host>
#
# Type 'bbb-conf -h' for more options.
접속할때 보이던 bbb-conf 명령어를 이용해서 셋팅을 하자

# bbb-conf --setip 192.168.0.33
-bash: bbb-conf: command not found

command not found 란다 ㅡ,ㅡ;; 당황하지 말고

# apt-get update
# apt-get upgrade
# apt-get install bigbluebutton
모든 업데이트 및 설치를 하고

# bbb-conf --setip 192.168.0.33
해보자 숄랴 숄랴 하면서 셋팅이 될것이다.
기본 80포트를 사용하기 때문에
http://192.168.0.33 접속을 해보자

위와 같이 접속 페이지가 뜬다 join a demo meeting 접속해보자

짜잔!!!


404 error 가 나를 반겨준다. 뭐지 왜 안되지????

그렇다 한가지 더 깔아야 한다.


# apt-get install bbb-demo 를 설치해주자


그럼 정상적으로 접속화면이 뜨고 화상회의가 가능하다.


이것저것 해보다 문서 공유를 해보니 한글이 깨진다.

파워포인트는 정상적으로 한글이 나오는데 엑셀이 한글이 깨져 나온다


vm버전에 ubuntu가 한글이 안깔려서 그렇다 한글 패키지를 설치하자

# apt-get install language-support-ko


서비스를 재시작해주자

# bbb-conf --restart


그럼 정상적으로 출력이 된다.


첨부파일 첨부할때 페이지와 용량제한이 있다. 이부분은

# vi /var/lib/tomcat6/webapps/bigbluebutton/WEB-INF/classes/bigbluebutton.properties

maxNumPages=20000

MAX_SWF_FILE_SIZE=50000000

항목이 있다 이부분을 수정하면 된다.


여러 방을 만들고 싶다면

#  vi /var/www/bigbluebutton-default/index.html

맨아래쪽에

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Refresh" content="0;url=/demo/demo3.jsp" />

</head>

</html>

위 코드를 입력하자


방을 만들수 있는 형태로 접속이 가능하다.

위 화면을 수정하고 싶다면

# vi /var/lib/tomcat6/webapps/demo/demo3.jsp

들어가서 수정하면 된다.

반응형