Transferred from: http://yangactive.iteye.com/blog/1621712
Introduced
Bbb-conf is a BBB configuration command tool that can modify the BBB profile, manage the BBB process (start, start, restart), resolve initialization problems! As a developer, by looking at Bbb-conf's source code, you can help understand the different parts of BBB and how they work together!
Operation
If you enter bbb-conf without any parameters, you can see the list of command actions that are allowed below!
Java code
- bbb-conf [Options]
- Configuration:
- --setip BigBlueButton
- --conference [Konference|meetme|freeswitch]
- Switch Conference Module
- --setsalt <salt> Change the security salt in bigbluebutton.properties
- Monitoring:
- --check check configuration files and processes for problems
- --debug Scan The log files for error messages
- --watch Scan The log files for error messages every 2 seconds
- --salt View The URL and security salt for the server
- Administration:
- --restart Restart Bigbuebutton
- --stop Stop Bigbuebutton
- --start Start Bigbuebutton
- --clean Restart and clean all log files
- --zip zip up log files for reporting an error
There are some BBB configuration commands that require you as the root user to execute commands! Bbb-conf will print out a message prompting you to execute the command with sudo!
--setip
Example: bbb-conf--setip 192.168.1.211
Or
bbb-conf--setip bbb.mybbbserver.com
--clean
Clear all log files and restart bbb!
--check
Check the current configuration and list the potential issues!
--checkout
Move out of BBB
--conference <conference_module>
Change the Meeting mode
--debug
Check log files or errors
--reset-dev
Resetting the development environment using the development package
--salt
Display current BBB API Security salt
--setup-samba
This command, which can be used only with the BBB virtual machine, builds a shared development environment-
--setsalt <new_salt>
Create a new security key for BBB
--setup-dev [Web|client|apps]
To build the Bbb-web,bbb-client,bbb-apps development environment, execute the bbb-conf before executing this command--checkout
--start
Turn on all the BBB processes
--stop
Stop all the BBB processes
--watch
Not two minutes to view log files or error messages, use this command after sudo bbb-conf--clean to clear all log files
--zip
Compressed log file Report Error! (The exact words are: Zip up log files for reporting an error!), may be translated incorrectly!
This article may be written in some places where there is a mistake, look Haihan ~, reproduced please indicate the source http://yangactive.iteye.com/blog/1621712
Open source Video conferencing BigBlueButton development (2)--Configure command tools