Bug #30571 Capitalization of the mysql executable name
Submitted: 22 Aug 2007 16:58 Modified: 6 Sep 2007 9:52
Reporter: Roland Bouman Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Proxy: Documentation Severity:S3 (Non-critical)
Version: OS:Any
Assigned to: MC Brown CPU Architecture:Any

[22 Aug 2007 16:58] Roland Bouman
Description:
http://dev.mysql.com/doc/refman/5.1/en/mysql-proxy-cmdline.html shows the executable as "MySQL" instead of "mysql"

How to repeat:
" The default proxy port is 4040, so you can connect to your MySQL server through the proxy by specifying the hostname and port details:

$ MySQL --host=localhost --port=4040

If your server requires authentication information then this will be passed through natively without alteration by mysql-proxy, so you must also specify the authentication information if required:

$ MySQL --host=localhost --port=4040 \
   --user=username --password=password"

Suggested fix:
 The default proxy port is 4040, so you can connect to your MySQL server through the proxy by specifying the hostname and port details:

$ mysql --host=localhost --port=4040

If your server requires authentication information then this will be passed through natively without alteration by mysql-proxy, so you must also specify the authentication information if required:

$ mysql --host=localhost --port=4040 \
   --user=username --password=password
[22 Aug 2007 17:25] MySQL Verification Team
Thank you for the bug report.
[6 Sep 2007 9:52] MC Brown
The documentation has been updated to fix the capitalization issue.