Hi All
So I am now starting the JIRA/MySQL installation and setup.
I have reached the point of Running the JIRA setup. When I test the connection I get the following message:
null, message from server: "Host 'myserver.domain.com' is not allowed to connect to this MySQL server"
MySQL and JIRA are on the same PC.
I have created a jiradbuser and granted all permissions (using Navicat)
I have created the jiradb which is visible in Navicat (although at this stage has no tables)
All help gratefully received
Nick
From: http://dev.mysql.com/doc/refman/5.5/en/access-denied.html
{quote}
If the following error occurs when you try to connect from a host other than the one on which the MySQL server is running, it means that there is no row in the user
table with a Host
value that matches the client host:
Host ... is not allowed to connect to this MySQL server
You can fix this by setting up an account for the combination of client host name and user name that you are using when trying to connect.
If you do not know the IP address or host name of the machine from which you are connecting, you should put a row with '%'
as the Host
column value in the user
table. After trying to connect from the client machine, use a SELECT USER()
query to see how you really did connect. Then change the '%'
in the user
table row to the actual host name that shows up in the log. Otherwise, your system is left insecure because it permits connections from any host for the given user name.
On Linux, another reason that this error might occur is that you are using a binary MySQL version that is compiled with a different version of the glibc
library than the one you are using. In this case, you should either upgrade your operating system or glibc
, or download a source distribution of MySQL version and compile it yourself. A source RPM is normally trivial to compile and install, so this is not a big problem.
{quote}
Thanks Radu
Blindingly obvious when you know what the answer is!!! There was a simple miss-match between the user host setting and the one I was trying i.e. localhost vs. myservername
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.