Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

Download

Download the setup file for your operating system. The professional edition can directly be downloaded from the shop or the support area.

The Community edition can be downloaded from the Mongo Management Studio website.

Installation Windows/Mac

Start the respective setup file and follow the installation instructions.

...

  • Check if node.js is installed

 

Codeblock
themeEmacs
languagebash
node -

...

v

 

  • Install node.js if it's missing

...

Codeblock
themeEmacs
languagebash
titleinstall node.js
collapsetrue
## debian (as root):
apt-get install curl
curl -sL https://deb.nodesource.com/setup | bash -
apt-get install nodejs
 
## ubuntu, linux mint, ecta
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install nodejs
 
## For other distributions look here:
https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager

 

  • Unpack the tar.gz file
Codeblock
themeEmacs
languagebash

...

node -v 

...

 

debian (as root):
apt-get install curl
curl -sL https://deb.nodesource.com/setup | bash -
apt-get install nodejs

ubuntu, linux mint, ecta
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install nodejs

For other distributions look here:
https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager

...

tar -xvf mms-v1.0.1-community-linux.tar.gz
  • Open the directory lx-mms
  • Install Mongo Management Studio as root
Codeblock
themeEmacs
languagebash
sudo ./install.sh

...

  • Start Mongo Management Studio from the console
Codeblock
themeEmacs
languagebash
lx-mms

...

...

Update

For updates of Mongo Management Studio simply perform a new installation and the existing version is replaced with the new version.

...