Installation process
Below, MariaDB is used as the database.
Create database
Linux
In the terminal, change to the
<Install-path>\<database>\bindirectory .
For MariaDB as the database, this is the<Install-path>\mariadb\bindirectory.Execute the command
mysql.exe -u "username" -p.BASHmysql -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)
create database ece2;
Enter the following commands with the corresponding variables for
%mariadb-db-name%,%mariadb-wildfly-user%, %mariadb-wildfly-pw%, and%host%and have them executed.XMLGRANT 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;Exit mySQL shell
Install JDBC driver
Restart WildFly service
Prepare RE Cockpit Environment
Linux
To prepare and structure the RE-Cockpit environment, directories must be created in the shell.
cd /opt
sudo mkdir re-environment
cd re-environment