Skip to main content
Skip table of contents

migVisor Metadata Collector (mMC)

migVisor Metadata Collector (mMC) is a tool that scans data sources and collects their metadata. At the end of scanning, mMC produces file(s) with scan results. Then, mMC either uploads them to mConsole or saves them locally. Finally, mConsole performs analysis based on these scan results.

Data source is either a database or an application. mMC accesses data sources by the data source configuration.

mMC can be run using a single executable, allowing utilizing either the command-line interface (CLI) or the graphical user interface (GUI):

  • mMC CLI offers a more straightforward approach. It allows inputting the data source configurations and scanning the data sources immediately.

  • mMC GUI provides a wider spectrum of data source configuration management capabilities. It allows discovering data sources, testing connectivity before scanning, and archiving data source configurations.

Hosting Requirements

The hosting requirements for running mMC are:

  1. A computer with network access to your source system(s).

  2. Java 17 or OpenJDK 17 installed. To ensure that the correct version is installed on your machine, in the command line, execute the following command: java -version

Network Requirements

For the scanning operation to succeed, the host running mMC must be able to connect to each one of the sources via the network.

In case the source is a cluster, all members of the cluster must be reachable on their respective ports.

For automatic uploading scan results to mConsole, the host running mMC must have outbound internet access to https://console.migvisor.com/ on TCP port 443. This option is required for using mMC GUI or mMC CLI in Online mode for automatic uploading.

Source Access Requirements

mMC must connect and authenticate to sources or databases in order to execute various commands during a scan. The database access requirements are:

  • Credentials for a single database user that can be used to log in to all of the source servers.

  • Permissions given to the database user to run all scan commands for that source type.

For more details and help creating a user with sufficient privileges on the various sources, see https://doc.migvisor.com/mdoc/resources .

Java version configurations

The current version of mMC requires Java 17 version. To ensure the uninterruptable start of the application, provide the following configurations:

  1. Install Java 17 on your endpoint.

  2. Define the way to the bin folder of the respected Java version:

    1. Open the folder of the Java 17 version.

    2. Open the bin folder.

    3. Copy the path to the folder.

    4. Open the extracted mmc.sh or mmc.bat for editing.

  3. At the beginning of the file, replace java with the path to the folder\java.

  4. Save and close the file.

Command Prompt window must remain open while running mMC.

Do not run more than one instance of mMC at the same time.

mMC has two operation modes:

  • Online. If you provide valid migVisor credentials before scanning, mMC uploads the scan results directly to mConsole for analysis.

  • Offline. If you don’t log in to migVisor before scanning, mMC runs in offline mode. Then, mMC saves scan results locally.

mMC is able to scan either single sources or a set of sources set in the configuration file:

  • Scanning single sources is available both in GUI and CLI modes but it’s more reasonable to use it in the GUI mode. The GUI mode allows filling in the source parameters in a separate window tailored for each source type.

  • Scanning a set of sources from the configuration file(s) is also available in both modes but it’s more reasonable to use it in the CLI mode. CLI mode allows passing in one command a whole set of configuration files of all supported formats, and the scanning parameters.

Source Connection

mMC connects to sources using the network interfaces or hosts you supply to it.

Supported source types include:

Databases

  • MongoDB

  • HBase

  • MySQL

  • Oracle

  • PostgreSQL

SQL Server

SQL Server - Windows Authentication (optional)

If you run mMC on Windows, you can apply your Windows Authentication credentials to scan SQL Server sources.

To enable Windows Authentication for SQL Server sources connection:

  1. Download Microsoft JDBC Driver 11.2 for SQL Server (zip).

  2. Extract the archive and open the folder sqljdbc_11.2\enu auth.

  3. Extract mssql-jdbc_auth-11.2.2.x64.dll or mssql-jdbc_auth-11.2.2.x86.dllbased on the architecture of your OS.

  4. Copy the extracted .dll file to %JAVA_HOME%\bin.

  5. Run mMC.

SQL Server - TLS support

Java 1.8 uses TLS 1.2 by default. If your source does not support TLS 1.2, please consider upgrading its TLS version (you can use the following Microsoft KB article for reference).

TLS version 1.2 or above is recommended.

The workaround below should only be exercised upon careful consideration and in accordance with your organization’s security policies.

You can reenable the older TLS version on the host running mMC by removing it from the list of disabled algorithms in Java’s security settings:

  1. Open the file %JAVA_HOME%\lib\security\java.security for editing.

  2. Locate the entry jdk.tls.disabledAlgorithms.

  3. Remove the specific named TLS version you want to allow.

  4. Save the file.

For example, if your source only allows TLSv1.1:

before: jdk.tls.disabledAlgorithms=... TLSv1.1, RC4, DES ...

after: jdk.tls.disabledAlgorithms=... RC4, DES...

Applications

  • Java

  • C#

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.