Local version
Download
Download the setup 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-v0.4.0-darwin.pkg)
- Windows (http://packages.litixsoft.de/mms/mms-v0.4.0-windows.exe)
- Linux 64 bit (http://packages.litixsoft.de/mms/mms-v0.4.0-linux-amd64.deb)
...
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)
...
Codeblock | ||||
---|---|---|---|---|
| ||||
node server.js | ||||
Codeblock | ||||
|
- Start 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
Warnung |
---|
Please change necessarily the password of the sysadmin! |
Starten der Anwendung als Dienst
Windows
In Windows können Sie die Anwendung als Windows-Dienst registrieren. Dadurch läuft die Anwendung auch nach einem Neustart des Systems.
Codeblock | ||||
---|---|---|---|---|
| ||||
// Installation als Dienst // Pseudo Code bbs service install [nameName ofdes serviceDienstes] [Node versionVersion] ["pathPfad tozur server.js fileDatei"] // exampleBeispiel // serviceDienst isheißt mms // useVerwenden theder node versionVersion 0.10.26 // zip-fileZip wasDatei unzipedwurde in den folderOrdner c:\mms entpackt bbs service install mms 0.10.26 "c:\mms\server.js" |
Hinweis |
---|
Currently launching an application as a service in BaboonStack is only supported for Windows and Linux, but not for Mac OSX. In this case use tools based on node.js, e.g. PM2 or forever. |
- Start the service
Codeblock | ||||
---|---|---|---|---|
| ||||
// Starten des Dienstes // Pseudo Code bbs service start [nameName ofdes serviceDienstes] // exampleBeispiel // serviceDienst isheißt mms bbs service start mms |
...
Warnung |
---|
Please change necessarily the password of the sysadmin! |
Linux
hier kommt noch die Anleitung für system.d, upstart und init...
Mac
Verwenden Sie hier Tools auf Basis von node.js, z.B. PM2 oder forever.
Update
- Stop the service or the Node.js application (Mac OSX)
...