Chat now with support
Chat mit Support

erwin Evolve 2023.1.0 - User Guide

erwin Evolve 2023.1.0 User Help Guide Legal Notices Getting Started Creating Sites and Pages Data Layout Options Filtering Data Property Groups Data Visualizations Displaying Diagrams Using Web Modeler Automatic Diagrams (Diagram Designer) Navigating your Site Enhanced erwin Evolve Plugins Workflow Explained Social Interaction Features Questionnaires Reference Configuration and Administration Customizing Your Site Troubleshooting Upgrading

Enable One Draft Mode

The One Draft Mode enforces only one draft per published diagram. Thus, preventing multiple drafts of the same diagram being edited at the same time.

To enable the One Draft Mode in Evolve Designer:

  1. Start Evolve Designer.

  2. On the Evolve Designer Models launcher dialog box, click the Configure Evolve Server button.

    Icon

Description automatically generated

    The Evolve Server Configuration dialog opens.

  3. Under Features, select the Enable One Draft Mode check box.

Graphical user interface, table

Description automatically generated

  1. Click Save.

  2. Click Configure IIS and perform full deployment.

This enables the One Draft Mode. Once it is enabled:

  • The “Available drafts for this diagram” option is disabled.

    Clicking the Edit Diagram In Web Modeler icon bypasses the “Available draft for this diagram” option and redirects you to erwin Web Modeler.

    Graphical user interface, application

Description automatically generated

  • The “Duplicate Draft” option in erwin Web Modeler is disabled.

    Clicking Icon

Description automatically generated displays a notification, “Cannot create duplicate draft as one draft mode is enabled”.

    Graphical user interface, application

Description automatically generated

    Graphical user interface, text

Description automatically generated

    • The “Create new draft” button is disabled.
      If a diagram has more than one draft diagram created prior to the setting being enabled, clicking Create new draft, displays a notification, “Unable to create a draft because single draft mode is enabled.”


      You can delete unwanted drafts. Once done, you will be redirected to erwin Web Modeler.


Icon

Description automatically generated

If the diagram already has a draft created, and someone modifies the published diagram via the desktop modeler, then beware that any changes made in the published diagram won't be synchronized in the draft diagrams. To see the changes, delete the unwanted drafts and create a new one.

Padlock Objects in Web Modeler

The Padlock Objects feature enables you to lock and unlock objects in Web Modeler.

To lock the objects on the diagram surface, follow these steps:

  1. Select the required object you want to lock. For example, Syscom.

    The Lock selected nodes option is enabled.

  2. Click .

    A Syscom object is now locked.

    Icon

Description automatically generated

    A locked object cannot be moved on the canvas, but its properties can be edited.

Similarly, you can unlock an object. To unlock an object, select the object and click .

Icon

Description automatically generated

Selecting unlocked objects displays .

Selecting only locked items displays , while selecting both locked and unlocked objects displays .

Load Balancing with erwin Web Modeler

Previously if you wanted to use Web Modeler you were restricted to a single server installation. We have now extended the configuration to allow for multi-server (or load balanced) environments.

Configuring MongoDB Replication

This topic explains the process to configure MongoDB Replication. This process is only required if you are serving Evolve Web Platform from more than one web server, in a load balanced array.

Configure MongoDB Replication

  1. Press the Windows key and then click Start.

  2. Search for Services.

The Services window appears.

  1. Select MongoDB Server.

  1. Click Stop.

MongoDB Server service stopped.

  1. Go to MongoDB bin folder available at C:\Program Files\MongoDB\Server\4.2\bin.

  2. Open `mongod.cfg` file in text editor (For example, Notepad).

  3. Update replication property as follows:

    replication:

        replSetName: "rs0"

  4. Bind your system IP address in the following format:

    net:

        port: 27017

        bindIp: <enter system ipv4>, 127.0.0.1

  5. Save the`mongod.cfg` file.

  6. Start MongoDB Service.

  7. Go to C:\Program Files\MongoDB\Server\4.2\bin and open the command Prompt.

  8. Run the mongo.exe command.

  9. Run the following command:

rs.initiate({_id : "rs0",members: [{ _id: 0, host: "<enter system ipv4>:27017"}]})

Icon

Description automatically generated

The default MongoDB port number is 27017. If required, you can update it to a different port number.

  1. Run the rs.status() command to check whether replication is configured successfully.

Successful MongoDB replication is indicated by a response where the members array has the name and IP properties according to the values configured in step 13.

Configure Evolve Server

The instructions below explain Evolve Server Configuration to publish your sites on it.

On the main/master server:

  1. Start Evolve Designer.

  2. On the Evolve Designer Models launcher dialog, click the Configure Evolve Server button.

    Icon

Description automatically generated

The Evolve Server Configuration dialog opens.

Graphical user interface, text, application, email

Description automatically generated

  1. Under Server, select the Primary Server, Share Data Folder and Share MongoDB check boxes.

Graphical user interface, text, application

Description automatically generated

Icon

Description automatically generated

In the MongoDB URL option, the IPv4 address will be replaced with the host address, unless you manually update the main machine IP address.

  1. Click Save.

  2. Click Configure IIS and perform full deployment.

On the secondary server:

  1. Start Evolve Designer.

  2. On the Evolve Designer Models launcher dialog, click the Configure Evolve Server button.

Icon

Description automatically generated

The Evolve Server Configuration dialog opens.

Graphical user interface, text, application, email

Description automatically generated

  1. Under Server, select the Use the Share Data Folder and Use the Shared MongoDB check boxes.

Graphical user interface, text, application

Description automatically generated

  1. Click Features and in the Web Modeler API URL box, replace your host IP address with "localhost".

    Graphical user interface, table

Description automatically generated

Icon

Description automatically generated

The address should be “http://localhost:3001/” after replacing IP address.

 

Icon

Description automatically generated

Before deploying, ensure that MongoDB and Diagrammer services are running.

 

  1. Click Save.

  2. Click Configure IIS and perform full deployment.

Icon

Description automatically generated

Verify whether the database property is added to the environment variables.

  1. Restart the secondary server.

  2. Open erwin Web Modeler.

Verify whether it displays the main server’s erwin Web Modeler drafts and data. This indicates that both machines are connected to the same MongoDB database.

Configuring MongoDB Replication

Load Balancing with erwin Web Modeler

Previously if you wanted to use Web Modeler you were restricted to a single server installation. We have now extended the configuration to allow for multi-server (or load balanced) environments.

This topic explains the process to configure MongoDB Replication. This process is only required if you are serving Evolve Web Platform from more than one web server, in a load balanced array.

Configure MongoDB Replication

  1. Press the Windows key and then click Start.

  2. Search for Services.

The Services window appears.

  1. Select MongoDB Server.

  1. Click Stop.

MongoDB Server service stopped.

  1. Go to MongoDB bin folder available at C:\Program Files\MongoDB\Server\4.2\bin.

  2. Open `mongod.cfg` file in text editor (For example, Notepad).

  3. Update replication property as follows:

    replication:

        replSetName: "rs0"

  4. Bind your system IP address in the following format:

    net:

        port: 27017

        bindIp: <enter system ipv4>, 127.0.0.1

  5. Save the`mongod.cfg` file.

  6. Start MongoDB Service.

  7. Go to C:\Program Files\MongoDB\Server\4.2\bin and open the command Prompt.

  8. Run the mongo.exe command.

  9. Run the following command:

rs.initiate({_id : "rs0",members: [{ _id: 0, host: "<enter system ipv4>:27017"}]})

Icon

Description automatically generated

The default MongoDB port number is 27017. If required, you can update it to a different port number.

  1. Run the rs.status() command to check whether replication is configured successfully.

Successful MongoDB replication is indicated by a response where the members array has the name and IP properties according to the values configured in step 13.

Configure Evolve Server

The instructions below explain Evolve Server Configuration to publish your sites on it.

On the main/master server:

  1. Start Evolve Designer.

  2. On the Evolve Designer Models launcher dialog, click the Configure Evolve Server button.

    Icon

Description automatically generated

The Evolve Server Configuration dialog opens.

Graphical user interface, text, application, email

Description automatically generated

  1. Under Server, select the Primary Server, Share Data Folder and Share MongoDB check boxes.

Graphical user interface, text, application

Description automatically generated

Icon

Description automatically generated

In the MongoDB URL option, the IPv4 address will be replaced with the host address, unless you manually update the main machine IP address.

  1. Click Save.

  2. Click Configure IIS and perform full deployment.

On the secondary server:

  1. Start Evolve Designer.

  2. On the Evolve Designer Models launcher dialog, click the Configure Evolve Server button.

Icon

Description automatically generated

The Evolve Server Configuration dialog opens.

Graphical user interface, text, application, email

Description automatically generated

  1. Under Server, select the Use the Share Data Folder and Use the Shared MongoDB check boxes.

Graphical user interface, text, application

Description automatically generated

  1. Click Features and in the Web Modeler API URL box, replace your host IP address with "localhost".

    Graphical user interface, table

Description automatically generated

Icon

Description automatically generated

The address should be “http://localhost:3001/” after replacing IP address.

 

Icon

Description automatically generated

Before deploying, ensure that MongoDB and Diagrammer services are running.

 

  1. Click Save.

  2. Click Configure IIS and perform full deployment.

Icon

Description automatically generated

Verify whether the database property is added to the environment variables.

  1. Restart the secondary server.

  2. Open erwin Web Modeler.

Verify whether it displays the main server’s erwin Web Modeler drafts and data. This indicates that both machines are connected to the same MongoDB database.

Verwandte Dokumente

The document was helpful.

Bewertung auswählen

I easily found the information I needed.

Bewertung auswählen