forked from SenecaCDOT-BigBlueButton/SenecaBBB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
59 lines (46 loc) · 1.42 KB
/
README
File metadata and controls
59 lines (46 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
SenecaBBB
=========
Seneca BigBlueButton Integration Project
# Setting up DB on Ubuntu 12.04
1) Run these commands to install mysql (note the password you set when installing mysql server)
```
sudo apt-get install mysql-server
sudo apt-get install mysql-client
sudo apt-get install libmysql-java
```
2) Edit your mysql configuration file
```
sudo gedit /etc/mysql/my.cnf
```
- port = 3309 (change all instances of port)
- bind-address = local VM ip
3) Restart the mysql service
```
sudo service mysql restart
```
4) Connect to mysql-server (use the password you set when installing mysql server)
```
mysql -u root -p
```
5) Create the database 'db' then exit
```
create database db;
```
6) Download the MySQL script files and run them (from terminal)
```
mysql -u root -p db < bbb_db_creation.sql
mysql -u root -p db < bbb_db_init.sql
mysql -u root -p db < bbb_db_sampleData.sql
```
7) Connect to mysql-server again
```
mysql -u root -p
```
8) Create a user for remote access to DB and grant privileges
```
create user 'senecaBBB'@'%' identified by 'db';
grant all on db.* to 'senecaBBB'@'%' IDENTIFIED by 'db';
```
To connect to database,bigbluebutton server, and email server, please copy the config.properties.template file in directory:
# web-app/WebContent/WEB-INF/classes/config/
and rename it to config.properties. Please also fill in the missing information in the file.