Skip to content

Checking the Database


Checking the Status

  1. Open a PowerShell (Administrator).

  2. Execute the following command:

    & "C:\Program Files\MongoDB\Server\4.4\bin\mongo.exe" --tls --tlsAllowInvalidCertificates --eval 'rs.status()'
    

    The output has to contain the following line:

    "ok" : 1


Showing the Configuration

  1. Open a PowerShell (Administrator).

  2. Execute the following command:

    & "C:\Program Files\MongoDB\Server\4.4\bin\mongo.exe" --tls --tlsAllowInvalidCertificates --eval 'rs.conf()'
    

Back to top