Answer by nturba · May 29 at 04:54 PM
The lack of license **does not prevent** DB setup.
In general, the setup process should look like following (MySQL for example):
1. Install the MySQL JDBC Driver
2. Install MySQL (Database Requirements) - note, that 8.0 version is not supported at this point.
3. Edit the following line in my.cnf file (For example you can just comment the line to make db available for all devices. Then restart MySQL.):
> bind-address = 127.0.0.1
4. Create new empty schema 'commanderdb' with charset 'UTF8" and new user 'commander' with all privileges (e.g.).
> CREATE DATABASE commanderdb CHARACTER > SET utf8 COLLATE utf8_general_ci; > > CREATE USER 'commander'@'new EF server > host name' IDENTIFIED BY 'password'; > > GRANT ALL PRIVILEGES ON *.* TO > 'commander'@'new EF server host name'; > > FLUSH PRIVILEGES;
5. Use UI or ectool setDatabaseConfiguration to point your DB.
6. Once it is done, you can install your licence.
Electric Cloud powers Continuous Delivery, helping organizations developing deliver better software faster by automating and accelerating build, test, and deployment processes at scale. Industry leaders like Qualcomm, SpaceX, Cisco, GE, Gap, and E*TRADE use Electric Cloud solutions to boost DevOps productivity and Agile throughput.