<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: mysql error in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194524#M9962</link>
    <description>the string '(Using Password: NO)' make me think that you haven't provided a password but mysql wants it. Add the -p option to mysqladmin, and it should ask you a password before trying to connect.&lt;BR /&gt;&lt;BR /&gt;usually, after installing mysql, I add a user called 'admin' or 'system' (like Oracle) with administrative privileges and I use this to maintain the server (even from remote machines):&lt;BR /&gt;&lt;BR /&gt;# mysql         (from root)&lt;BR /&gt;mysql&amp;gt; use mysql&lt;BR /&gt;Database changed&lt;BR /&gt;mysql&amp;gt; grant all privileges on *.* to admin@"%" identified by 'admin';&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;now, from remote machines, I can connect to mysql server with:&lt;BR /&gt;&lt;BR /&gt;$ mysql -h &lt;SERVERNAME&gt; -u admin -p&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Claudio&lt;BR /&gt;&lt;/SERVERNAME&gt;</description>
    <pubDate>Wed, 18 Feb 2004 05:20:30 GMT</pubDate>
    <dc:creator>Claudio Cilloni</dc:creator>
    <dc:date>2004-02-18T05:20:30Z</dc:date>
    <item>
      <title>mysql error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194520#M9958</link>
      <description>I apparently have installed mysql 4.0.17 and i started 'mysqld_safe' ... I check my processes and it indeed shows up. &lt;BR /&gt;&lt;BR /&gt;When i do mysqladmin -h localhost version, i get a :&lt;BR /&gt;&lt;BR /&gt;"mysqladmin:  connect to server at 'localhost' failed &lt;BR /&gt;error:  'Access denied for user: 'root@localhost' (Using Password: NO)' &lt;BR /&gt;&lt;BR /&gt;Anybody come across this or know any solutions what my problem might be? I have to leave soon but i'll be in tomorrow morning. Thanks for any replies.&lt;BR /&gt;&lt;BR /&gt;PS. i have RH 9.0 and installed the RPM's</description>
      <pubDate>Tue, 17 Feb 2004 14:16:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194520#M9958</guid>
      <dc:creator>Kyle D. Harris</dc:creator>
      <dc:date>2004-02-17T14:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: mysql error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194521#M9959</link>
      <description>Kyle:&lt;BR /&gt;&lt;BR /&gt;It basically wants a password before it will allow access to root.  MySQL treats root like any other user, and requires a password unless you set it up otherwise.  Try&lt;BR /&gt;&lt;BR /&gt;mysqladmin -h localhost version -p&lt;BR /&gt;&lt;BR /&gt;and it will prompt you for a password, which should then give you access.&lt;BR /&gt;&lt;BR /&gt;Bruce</description>
      <pubDate>Tue, 17 Feb 2004 15:36:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194521#M9959</guid>
      <dc:creator>Bruce Copeland</dc:creator>
      <dc:date>2004-02-17T15:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: mysql error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194522#M9960</link>
      <description>Hello Kyle,&lt;BR /&gt;&lt;BR /&gt;you should have a file Docs/manual.html somewhere in your mysql installation. Section 4.3 discusses user setup and management in detail. If you have not done so make sure the myqsl server is &amp;lt;&lt;NOT&gt;&amp;gt; running as root.&lt;BR /&gt;&lt;BR /&gt;Greetings, Martin&lt;/NOT&gt;</description>
      <pubDate>Tue, 17 Feb 2004 15:48:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194522#M9960</guid>
      <dc:creator>Martin P.J. Zinser</dc:creator>
      <dc:date>2004-02-17T15:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: mysql error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194523#M9961</link>
      <description>login to mysql using 'mysql -u root' and try allocating permission for root@localhost to login by either [update mysql.user set host='localhost' where user='root'] or adding another privilege for root@localhost.</description>
      <pubDate>Tue, 17 Feb 2004 21:01:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194523#M9961</guid>
      <dc:creator>Philip Lo</dc:creator>
      <dc:date>2004-02-17T21:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: mysql error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194524#M9962</link>
      <description>the string '(Using Password: NO)' make me think that you haven't provided a password but mysql wants it. Add the -p option to mysqladmin, and it should ask you a password before trying to connect.&lt;BR /&gt;&lt;BR /&gt;usually, after installing mysql, I add a user called 'admin' or 'system' (like Oracle) with administrative privileges and I use this to maintain the server (even from remote machines):&lt;BR /&gt;&lt;BR /&gt;# mysql         (from root)&lt;BR /&gt;mysql&amp;gt; use mysql&lt;BR /&gt;Database changed&lt;BR /&gt;mysql&amp;gt; grant all privileges on *.* to admin@"%" identified by 'admin';&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;now, from remote machines, I can connect to mysql server with:&lt;BR /&gt;&lt;BR /&gt;$ mysql -h &lt;SERVERNAME&gt; -u admin -p&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Claudio&lt;BR /&gt;&lt;/SERVERNAME&gt;</description>
      <pubDate>Wed, 18 Feb 2004 05:20:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194524#M9962</guid>
      <dc:creator>Claudio Cilloni</dc:creator>
      <dc:date>2004-02-18T05:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: mysql error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194525#M9963</link>
      <description>The mysql distribution usually comes with a subdirectory called "scripts" there are some important setup scripts that need to be run before logging in (this of course depends on how you installed mysql). mysql_install_db.sh sets up the priviledge tables, without them no password will work anyway.</description>
      <pubDate>Wed, 18 Feb 2004 10:16:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mysql-error/m-p/3194525#M9963</guid>
      <dc:creator>Paul Cross_1</dc:creator>
      <dc:date>2004-02-18T10:16:16Z</dc:date>
    </item>
  </channel>
</rss>

