Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
{
    "Logging": {
        "LogLevel": {
            "Default": "Debug",
            "System": "Information",
            "Microsoft": "Information"
        }
    },
    "Upgrade": {
        "ConnectionString": "Server=172.18.3.32;Persist Security Info=False;MultipleActiveResultSets=False;Initial Catalog=mmdev_dam;User ID=admin_mmdev_dam;Password=admin_mmdev_dam",
        "RunGenerateSearchForAll": true,
        "ApiUrl": "https://mm-dam.dev.digizuite.com/dmm3bwsv3",
        "ApiUsername": "System",
        "ApiPassword": "a2ddc680310e876a61c5d4bd7e52663f",
        "VersionGuid": "0B59C5CF-E3A9-4043-AEDB-FCEAA4040D4C",
        "Availability": "74A5A102-A310-4BB7-9E84-0B14C36436B2",
        "Timeout": "00:30:00"
    }
}

The names of the parameters that need to be changed are marked in green above. The fields marked in red above need to be either completely replaced with the values relevant for your environment or double-checked, if they are default values. It is important that all of the fields are filled out correctly, without missing or adding characters. 


Info

It is good practice to completely remove the text between quotation marks before copy-pasting new information. This minimizes the chances of typing mistakes.

...

Parameter nameDescription
dbConnectionString

This is database connection string. It must include the SQL server IP/Hostname, database name for the DAM Center, and the credentials of a SQL Server user with the rights to edit the given database.

This information can be found in the DAM Center's configuration file. You need to copy information from the field called "connectionString":Image Removed

runGenerateSearchForAll

This determines, whether all Solr searches should be repopulated after the installation/update.

Default: true

apiUrl

The URL to the DAM Center's external API. It is formed by the base URL of the DAM Center and ending "/dmm3bwsv3/". Remember to include the character "/" at the end!

Example: https://demo3dc.digizuite.com/dmm3bwsv3/

apiUsername

This is the name of the system user.

This information can be found in the DAM Center's configuration file. You need to copy information from the section "digiConfig".

Default: System

apiPassword

This is the MD5 hash of the password for the user set in apiUsername.

This information can be found in the DAM Center's configuration file. You need to copy information from the section "digiConfig".

versionGuid

This is the desired GUID for the Media Manager 5 configuration. If there is no Media Manager 5 installed on the DAM Center, this field can be any valid GUID. If Media Manager 5 is already installed and the update is performed, the field must use the Media Manager 5 version GUID from the DAM Center. 

The GUID you use, has to point at the root of the Media Manager configuration version. 

Warning

If Media Manager 4 is installed on the DAM Center, the version GUID for Media Manager 5 must be unique from it!


usingEmbeddedScripts

This determines, whether the executable uses the default embedded SQL scripts for the installation, or if it looks for SQL scripts in the installer folder.

Default: true

timeoutInSeconds

This is the maximum time to wait before timing out any request. If runGenerateSearchForAll is used, it is recommended to set the value to 1800.

Default: 1800

Availability

This is the Guid of metadata field that controls publishing.

Default: 74A5A102-A310-4BB7-9E84-0B14C36436B2

...

Code Block
languagejs
{
  "Logging": {
    "LogLevel": {
      "Default": "Warning"
    }
  },
  "AllowedHosts": "*",
  "EnablePrerendering": false,
  "ForceHttps": true,
  "HttpsPort": 443,
  "MediaManagerConfiguration": {
    "GuestUsername": "Guest",
    "GuestPassword": "0ea2f02d5f73c86c220ff08b23d1c3f1",
    "ApiDomain": "mm-dam.dev.digizuite.com",
    "UseHttps": true,
    "WowzaServer": "https://mm.dev.digizuite.com/",
    "WowzaAppName": "mmapp",
    "AbrMediaId": "666",
    "EnabledFeatures": [],
    "InstrumentationKey": "#{instrumentationKey}",
    "ProductVersion": "#{productVersion}",
    "VersionId": "!/5/",
    "UseFederatedAuthentication": false,
    "EnableNormalLogin": false,
    "BusinessWorkflowServiceUrl": "http://localhost:60000/"
  }
}

...