MySQL Forums
Forum List  »  MySQL Workbench

Re: access denied
Posted by: Mike Lischke
Date: January 19, 2010 02:31AM

Hey Mark,

"root" is the initial administrator user when installing MySQL. Also, on Linux type system it's the default super user/adminstrator (super user role on Solaris). You need root for the MySQL login unless you have other users defined which are allowed to connect from the host you are doing the connection from.

SSH is used to manage your MySQL server instance (e.g. startup/shutdown the service or edit the configuration file) as well as getting some system stats (mem and CPU usage). "Use sudo" is, at least on Win based systems, relatively useless as one always must be admin to start/stop the service.

If you only want to use the SQL IDE you don't need the server instance. The connection (to the MySQL server) itself is enough. Also this connection can use SSH (as a tunnel this time) to circumvent port restriction (e.g. 3306, the MySQL default port) is blocked by a firewall, but 80, the http port, is open). An SSH tunnel allows to use another open port to connect to MySQL indirectly.

HTH

Mike

Mike Lischke, MySQL Developer Tools
Oracle Corporation

MySQL Workbench on Github: https://github.com/mysql/mysql-workbench
On Twitter: https://twitter.com/MySQLWorkbench
On Slack: mysqlcommunity.slack.com (#workbench)
Report bugs to http://bugs.mysql.com
MySQL documentation can be found here: http://dev.mysql.com/doc/refman/8.0/en/

Options: ReplyQuote


Subject
Views
Written By
Posted
2825
January 18, 2010 04:43PM
Re: access denied
1372
January 19, 2010 02:31AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.