or123456
or123456

Reputation: 2199

Install MySql With default Configure automatically

I created a java application with mysql,hibernate. I building a installer for my application and want to install mysql With default Configure on user PC automatically. how to install mysql automatically without be user set Configure(example password,user,instance)? On Windows and linux

Upvotes: 0

Views: 2409

Answers (3)

SP9AUV
SP9AUV

Reputation: 21

For automatic install all components and configure it in a Windows you can use program MYSQL_INSTALL_AUTOMATIC_ALL_COMPONENT_AND_CONFIGURE_IT.exe . It is describe on my GitHub repository Install-automatic-MYSQL-all-component-and-configure

The program is used for automatic and very easy install MYSQL database and do its configuration automatically so that the user does not have to choose any parameter from the menu or need read help . Almost all operation is hidden . Only must only approve a few (3-4) button's type NEXT. All parameters are stored in the config file setup.ini what can be edit and change by programmer to adapt it , according to the needs . There are also source in Delphi . Click there to see example screen

Upvotes: 0

KKK
KKK

Reputation: 1085

Installing on Ubuntu is as straight forward as:

sudo apt-get install mysql-server mysql-client

Upvotes: 1

Anil
Anil

Reputation: 965

MySQL installer for windows installs it automatically with default settings...

Upvotes: 1

Related Questions