Skip to main content
Skip table of contents

Installation process

Below, MariaDB is used as the database.

Create database

Linux

  1. In the terminal, change to the <Install-path>\<database>\bin directory .
    For MariaDB as the database, this is the <Install-path>\mariadb\bin directory.

  2. Execute the command mysql.exe -u "username" -p.

    BASH
    mysql -u root -p -h localhost

Note

The username and password of the database must be used here.

3. When the connection is established, create the required database (in the MariaDB shell)

BASH
create database ece2;
  1. Enter the following commands with the corresponding variables for %mariadb-db-name%,%mariadb-wildfly-user%, %mariadb-wildfly-pw% , and %host% and have them executed.

    XML
    GRANT ALL PRIVILEGES ON ece2.* TO %mariadb-wildfly-user%@'localhost' IDENTIFIED BY '%mariadb-wildfly-pw%';
    GRANT ALL PRIVILEGES ON ece2.* TO %mariadb-wildfly-user%@'127.0.0.1' IDENTIFIED BY '%mariadb-wildfly-pw%';
    GRANT ALL PRIVILEGES ON ece2.* TO %mariadb-wildfly-user%@'::1' IDENTIFIED BY '%mariadb-wildfly-pw%';
    GRANT ALL PRIVILEGES ON ece2.* TO %mariadb-wildfly-user%@'%host%' IDENTIFIED BY '%mariadb-wildfly-pw%';
    FLUSH PRIVILEGES;
  2. Exit mySQL shell

  3. Install JDBC driver

  4. Restart WildFly service

Prepare RE Cockpit Environment

Linux

To prepare and structure the RE-Cockpit environment, directories must be created in the shell.

BASH
cd /opt
sudo mkdir re-environment
cd re-environment

Install WildFly

Linux

Linux

Linux

  1. Download Wildfly

    BASH
    cd ~/Downloads
    wget http://download.jboss.org/wildfly/18.0.1.Final/wildfly-18.0.1.Final.zip
    sudo mv ~/Downloads/wildfly-18.0.1.Final.zip /opt/re-environment/
    cd /opt/re-environment
  2. Extract content from the /opt/re-environment directory

  3. Edit standalone-full.xml so that it can access Wildfly.

    • Search the IP address 127.0.0.1 and replace it with the IP address of the server

      wildfly-18.0.1.Final/standalone/configuration/standalone.xml

      XML
      <wsdl-host>${jboss.bind.address:127.0.0.1}</wsdl>
      ...
      <interface name="management">
          <inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
      </interface>
      <interface name="public">
          <inet-address value="${joss.bind.address:127.0.0.1}"/>
      </interface>
      <interface name="insecure">
          <inet-address value="${joss.bind.address.unsecure:127.0.0.1}"/>
      </interface>
Windows

Windows

  1. Download Wildfly

  2. Extract the content

  3. In the installation directory, create a new folder named "WildFly"

  4. Copy WildFly to the installation directory

Note

A JDBC driver must exist in the <WildFly_home>\modules\system\layers\base\com\mysql\main directory.

  1. Copy module.xml to the <Install-path>\WildFly\modules\system\layers\base\com\mysql\main directory

  2. Copy standalone.xml to the <Install-path>\WildFly\standalone\configuration directory

Install the RE Cockpit

Linux

Linux

  1. Copy ece.ear to the <Install-path>/WildFly/standalone/deployments directory.

  2. Start the WildFly service

  3. ece.ear deploys automatically, as should be seen in the directory

  4. The RE Cockpit can be accessed with a web browser under the following link: http://%hostname%:8080/ece-web-client/

Windows

Windows

  1. Copy ece.ear to the <Install-path>/WildFly/standalone/deployments directory.

  2. Start the IF_WildFly service

  3. ece.ear deploys automatically, as should be seen in the directory

  4. Afterward, the RE Cockpit can be accessed with a web browser under the following link: http://%hostname%:8080/ece-web-client/

JavaScript errors detected

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

If this problem persists, please contact our support.