Sidebar

QIE did not start up properly because the MariaDB (or MySQL) service was not started.

0 votes
249 views
asked Oct 11, 2021 by jon-t-7005 (7,590 points)
QIE did not start up properly because the MariaDB (or MySQL) service was not started.  Can we make it wait until after the MariaDB (or MySQL) service has started before starting?

1 Answer

0 votes

To set the QIEService64 service to be dependent on the MySQL or MariaDB service in Windows, open a command prompt as an administrator and type this:

sc config QIEService64 depend=QIEMariadb

To do the same in Linux, edit the systemd startup file to include this in the [Unit] section:

After=mariadb.service
answered Oct 11, 2021 by jon-t-7005 (7,590 points)
edited Mar 3, 2023 by jon-t-7005
...