MariaDB on Windows - what is this error when trying to start the database engine?

I ask this question as an offshoot myself, and another from this other question by MariaDB: MariaDB on Windows - help with startup?

When I install MariaDB (v5.2.4), open a command window, navigate to the folder where the files are installed, and enter the following command to start the database:

net start mysql

I get the following error:

invalid service name

I did not do anything complicated, just started the installation and tried to start. Any ideas?

+3
source share
2 answers

The error basically indicates that the installer did not create the service (it does not currently create the service), so you will need to do it yourself.

  • MariaDB (C:\Program Files\MariaDB 5.2.4, - )
  • bin\mysqld --install

  • net start mysql

, 3306, stat.

, , , . my.ini(. MySQL .ini ), ( innodb ..). ( 3 ):

  • bin\mysqld --install MySQL --defaults-file = \to\my.ini

5.2.4 . , .

+10

MariaDB, XAMPP Windows 10. mysql XAMPP. , "" , MariaDB MariaDB.
: http://hodentekhelp.blogspot.com/2015/11/how-do-you-access-mariadb-in-xampp.html

0

Source: https://habr.com/ru/post/1791310/


All Articles