Local version
Enterprise Version
Download
Download the Zip-file for your operating system. The purchased versions can be downloaded directly from the shop. The free version can be found here:
- Mac OSX (http://packages.litixsoft.de/mms/mms-darwin-amd64.zip)
- Windows (http://packages.litixsoft.de/mms/mms-windows-amd64.zip)
- Linux 32 bit (http://packages.litixsoft.de/mms/mms-linux-i386.zip)
- Linux 64 bit (http://packages.litixsoft.de/mms/mms-linux-amd64.zip)
You'll also need BaboonStack. The latest version is available here:
Installation
- Start the installation of BaboonStack and leave all settings unchanged.
- Unzip the zip-file from Mongo Management Studio in the desired folder
- Adjust the settings in the config.js suitable for your environment
- Open the command prompt as administrator
- Run the setup script
node scripts/setup.js
- Start the application
node server.js
- Run the application in a browser (Default-URL: http://127.0.0.1:3333)
- Log in as administrator (login: sysadmin password: a)
- Change the password of the sysadmin
You really should change the password of the sysadmin for security reasons!
Run the application as a service
Windows
In Windows you can register the application as a service. Then Mongo Management Studio runs even after restart of your system.
// Installation as service // Pseudo Code bbs service install [Name of the service] [Node version] ["Path to server.js file"] // Example // Service is named mms // Use node version 0.10.26 // Zip file was unpacked in the folder c:\mms bbs service install mms 0.10.26 "c:\mms\server.js" // Start the service // Pseudo Code bbs service start [Name of the service] // Example // Service is named mms bbs service start mms
Linux
Below are two examples of different init systems under Linux. If necessary, change the settings for your system.
Example upstart script for Debian/Ubuntu
$ nano /etc/init/mmsd.conf $ service mmsd start
Example init.d script for CentOS
$ nano /etc/init.d/mmsd $ chmod +x /etc/init.d/mmsd $ update-rc.d mmsd defaults $ ./etc/init.d/mmsd start
Mac
Please use tools based on node.js like PM2 or forever.
Update
- Stop the service or the Node.js application (Mac)
// Pseudo Code bbs service stop [name of service] // example // service is mms bbs service stop mms
- Backup your current config.js file
- Unzip the Zip-file
- Copy and overwrite the files into the application's folder
- Compare your saved config.js with the new config.js and adapt changed settings if necessary