summaryrefslogtreecommitdiff
path: root/sql/mysql_install_db.cc
Commit message (Collapse)AuthorAgeFilesLines
* Small mysql_install_db.exe fixesVladislav Vaintroub2013-05-091-4/+10
| | | | | - Use lc-messages-dir instead of deprecated --language when running mysqld in bootstrap mode. - Add some verbosity to mysql_install_db.exe when it runs in course of MSI installation.
* strmake_buf(X,Y) helper, equivalent to strmake(X,Y,sizeof(X)-1)Sergei Golubchik2013-04-171-1/+1
| | | | with a bit of lame protection against abuse.
* MDEV-393. Remove --loose-pbxt=OFF/loose-skip-pbxt from bootstrapper calls to ↵Vladislav Vaintroub2012-07-121-1/+1
| | | | avoid "unknown parameter" warning
* fixed some urls that the previous update missedDaniel Bartholomew2012-06-181-2/+2
|
* MDEV-221 - Properly escape command line when starting mysql_install_db Vladislav Vaintroub2012-04-161-5/+13
| | | | | | | | | | since password characters can contain quotes or spaces. The proper quoting method for command line arguments used here was extracted from http://blogs.msdn.com/b/twistylittlepassagesallalike/archive/2011/04/23/everyone-quotes-arguments-the-wrong-way.aspx Additionally, mysql_install_db.exe now passes root password to "mysqld.exe --bootstrap" in hexadecimal form, to handle potential special chars inside password string literal.
* fix CRLF line endings to LFVladislav Vaintroub2011-04-081-11/+11
|
* Fix SQL syntax error when running mysql --bootstrap.Vladislav Vaintroub2011-04-081-1/+1
|
* mwl#59 - windows installer. Vladislav Vaintroub2011-03-091-116/+148
| | | | Address Monty's review comments
* Remove --loose-skip-pbxt kludge from mysql_install_db Vladislav Vaintroub2011-02-041-7/+2
| | | | | and mysql_upgrade_service, after LPBUG#688404 was fixed.
* MWL#55 : Add banner text to command line utilitiesVladislav Vaintroub2011-02-031-0/+7
| | | | (Philip's review)
* Fix service user name and directory ACL setting on localized WindowsVladislav Vaintroub2011-02-021-4/+40
| | | | | | * Spell username correctly as "NT AUTHORITY\NetworkService" * Also, use well-known SIDs for predefined user when assigning directory ACLs (the names differ in localized Windows)
* remove an extra LocalFree() call for pOldDacls, it is not allocated on heapVladislav Vaintroub2011-02-011-3/+4
|
* MWL#55 : mysql_install_db.exe - command line utilityto install new databaseVladislav Vaintroub2011-01-291-0/+566
on Windows. Some parameters not present in traditional mysql_install_db are present e.g --port, --default-user (whether to create a new users) or --service (windows service name)