Difference between revisions of "MongoDB Getting Started"

From mi-linux
Jump to navigationJump to search
Line 31: Line 31:
 
Replacing myStudentNumber with your University student number and myNewPasswor with your new password.
 
Replacing myStudentNumber with your University student number and myNewPasswor with your new password.
  
Note, the function names in <b>MongoDB</b> are case sensitive.
+
Note, the function names in MongoDB are <b>case sensitive</b>.
  
 
== Next Step ==
 
== Next Step ==
  
 
Return to the [[MongoDB_Workbook|Workbook]].
 
Return to the [[MongoDB_Workbook|Workbook]].

Revision as of 15:24, 20 October 2016

Main Page >> MongoDB >>MongoDB Workbook >> Getting Started

Using MongoDB

To access the database, first login to mi-linux.wlv.ac.uk (csl-student.wlv.ac.uk) using your University username and password.

mi-linux can be accessed using a Secure Shell client, such as Putty, that is available using the Apps Anywhere system.

Starting MongoDB

Once logged in, to start MongoDB run either the following command:

runMongo

or once you have changed your password (see below):

runMongo yourPassword


Changing Password

Once you have logged into MongoDB successfully you can change the default password:

db.updateUser("myStudentNumber",
{
    pwd: "myNewPassword",
 }
);


Replacing myStudentNumber with your University student number and myNewPasswor with your new password.

Note, the function names in MongoDB are case sensitive.

Next Step

Return to the Workbook.