Uncaught PDOException: SQLSTATE[HY000] [1045] Access denied for user 'hri4wa1_db'@'localhost' (using password: YES) The Next CEO of Stack OverflowFatal error: PDOException SQLSTATE[28000] [1045] Access deniedPDO access denied to external host, but I can access to phpmyadmin cpPDO cannot connect remote mysql serverLaravel: SQLSTATE[28000] [1045] Access denied for user 'homestead'@'localhost'PHP 5.6, PDO MySql Connection on Unix (LAMPP) - Fatal Error: SQLSTATE[HY000] [1045]Uncaught exception 'PDOException'How to connect to PDO in PHPSQLSTATE[HY000] [1045] Access denied for 'user'@'localhost' (using password: YES)Connect to MySQL/MariaDB with PHP PDO with --ssl without certificateSQLSTATE[HY000] [1045] Access denied for user 'test'@'localhost' (using password: YES)

Is it OK to decorate a log book cover?

The Ultimate Number Sequence Puzzle

Can you teleport closer to a creature you are Frightened of?

Is it okay to majorly distort historical facts while writing a fiction story?

Is there an equivalent of cd - for cp or mv

Which one is the true statement?

(How) Could a medieval fantasy world survive a magic-induced "nuclear winter"?

My ex-girlfriend uses my Apple ID to login to her iPad, do I have to give her my Apple ID password to reset it?

Physiological effects of huge anime eyes

Is it ever safe to open a suspicious HTML file (e.g. email attachment)?

What CSS properties can the br tag have?

Is there such a thing as a proper verb, like a proper noun?

Does Germany produce more waste than the US?

Is fine stranded wire ok for main supply line?

How to find image of a complex function with given constraints?

Would a grinding machine be a simple and workable propulsion system for an interplanetary spacecraft?

Decide between Polyglossia and Babel for LuaLaTeX in 2019

Reference request: Grassmannian and Plucker coordinates in type B, C, D

What happened in Rome, when the western empire "fell"?

How do I fit a non linear curve?

Won the lottery - how do I keep the money?

Can Sneak Attack be used when hitting with an improvised weapon?

What was Carter Burke's job for "the company" in Aliens?

Is there a difference between "Fahrstuhl" and "Aufzug"?



Uncaught PDOException: SQLSTATE[HY000] [1045] Access denied for user 'hri4wa1_db'@'localhost' (using password: YES)



The Next CEO of Stack OverflowFatal error: PDOException SQLSTATE[28000] [1045] Access deniedPDO access denied to external host, but I can access to phpmyadmin cpPDO cannot connect remote mysql serverLaravel: SQLSTATE[28000] [1045] Access denied for user 'homestead'@'localhost'PHP 5.6, PDO MySql Connection on Unix (LAMPP) - Fatal Error: SQLSTATE[HY000] [1045]Uncaught exception 'PDOException'How to connect to PDO in PHPSQLSTATE[HY000] [1045] Access denied for 'user'@'localhost' (using password: YES)Connect to MySQL/MariaDB with PHP PDO with --ssl without certificateSQLSTATE[HY000] [1045] Access denied for user 'test'@'localhost' (using password: YES)










0















Most answers were that it would be a right issue. But I assume not in this case, because mysql-connection still worked.



I am trying to connect to a mariadb10, which was on a server in my network

I am trying to connect from my localhost.



If I try in my terminal:



myuser@mylocalComputer ~ $ mysql -h myserver -P 3307 -u mydbuser -pmyconfidentalpassword


everything works fine!!



But If I try to connect by php scrypt by pdo I get the error:



<?php
$dsn = 'mysql: host=myserver:3307;dbname=mydbname';
$username = 'mydbuser';
$password = 'myconfidentalpassword';
$options = array(
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
);
$dbh = new PDO($dsn, $username, $password, $options);
if(! $dbh )
die('Could not connect: ' . mysql_error());


$sql = 'select * from foo;';
$retval = mysql_query( $sql, $conn );

if(! $retval )
die('Could not select data: ' . mysql_error());


echo "Synced data successfullyn";
mysql_close($conn);

?>


The Error was:




PHP Fatal error: Uncaught PDOException: SQLSTATE[HY000] [1045] Access
denied for user 'mydbuser'@'localhost' (using password: YES) in
/home/myuser/Projekte/Hibiscus_extend/Hib_Nightly_sync.php:8








Stack trace:




/home/myuser/Projekte/Hibiscus_extend/Hib_Nightly_sync.php(8):
PDO->__construct('mysql: host=myse...', 'mydbuser',
'myconfidentalpassword', Array)

main thrown in
/home/hri4wa1/Projekte/Hibiscus_extend/Hib_Nightly_sync.php on line 8





What did I do wrong, and where?










share|improve this question




























    0















    Most answers were that it would be a right issue. But I assume not in this case, because mysql-connection still worked.



    I am trying to connect to a mariadb10, which was on a server in my network

    I am trying to connect from my localhost.



    If I try in my terminal:



    myuser@mylocalComputer ~ $ mysql -h myserver -P 3307 -u mydbuser -pmyconfidentalpassword


    everything works fine!!



    But If I try to connect by php scrypt by pdo I get the error:



    <?php
    $dsn = 'mysql: host=myserver:3307;dbname=mydbname';
    $username = 'mydbuser';
    $password = 'myconfidentalpassword';
    $options = array(
    PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
    );
    $dbh = new PDO($dsn, $username, $password, $options);
    if(! $dbh )
    die('Could not connect: ' . mysql_error());


    $sql = 'select * from foo;';
    $retval = mysql_query( $sql, $conn );

    if(! $retval )
    die('Could not select data: ' . mysql_error());


    echo "Synced data successfullyn";
    mysql_close($conn);

    ?>


    The Error was:




    PHP Fatal error: Uncaught PDOException: SQLSTATE[HY000] [1045] Access
    denied for user 'mydbuser'@'localhost' (using password: YES) in
    /home/myuser/Projekte/Hibiscus_extend/Hib_Nightly_sync.php:8








    Stack trace:




    /home/myuser/Projekte/Hibiscus_extend/Hib_Nightly_sync.php(8):
    PDO->__construct('mysql: host=myse...', 'mydbuser',
    'myconfidentalpassword', Array)

    main thrown in
    /home/hri4wa1/Projekte/Hibiscus_extend/Hib_Nightly_sync.php on line 8





    What did I do wrong, and where?










    share|improve this question


























      0












      0








      0








      Most answers were that it would be a right issue. But I assume not in this case, because mysql-connection still worked.



      I am trying to connect to a mariadb10, which was on a server in my network

      I am trying to connect from my localhost.



      If I try in my terminal:



      myuser@mylocalComputer ~ $ mysql -h myserver -P 3307 -u mydbuser -pmyconfidentalpassword


      everything works fine!!



      But If I try to connect by php scrypt by pdo I get the error:



      <?php
      $dsn = 'mysql: host=myserver:3307;dbname=mydbname';
      $username = 'mydbuser';
      $password = 'myconfidentalpassword';
      $options = array(
      PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
      );
      $dbh = new PDO($dsn, $username, $password, $options);
      if(! $dbh )
      die('Could not connect: ' . mysql_error());


      $sql = 'select * from foo;';
      $retval = mysql_query( $sql, $conn );

      if(! $retval )
      die('Could not select data: ' . mysql_error());


      echo "Synced data successfullyn";
      mysql_close($conn);

      ?>


      The Error was:




      PHP Fatal error: Uncaught PDOException: SQLSTATE[HY000] [1045] Access
      denied for user 'mydbuser'@'localhost' (using password: YES) in
      /home/myuser/Projekte/Hibiscus_extend/Hib_Nightly_sync.php:8








      Stack trace:




      /home/myuser/Projekte/Hibiscus_extend/Hib_Nightly_sync.php(8):
      PDO->__construct('mysql: host=myse...', 'mydbuser',
      'myconfidentalpassword', Array)

      main thrown in
      /home/hri4wa1/Projekte/Hibiscus_extend/Hib_Nightly_sync.php on line 8





      What did I do wrong, and where?










      share|improve this question
















      Most answers were that it would be a right issue. But I assume not in this case, because mysql-connection still worked.



      I am trying to connect to a mariadb10, which was on a server in my network

      I am trying to connect from my localhost.



      If I try in my terminal:



      myuser@mylocalComputer ~ $ mysql -h myserver -P 3307 -u mydbuser -pmyconfidentalpassword


      everything works fine!!



      But If I try to connect by php scrypt by pdo I get the error:



      <?php
      $dsn = 'mysql: host=myserver:3307;dbname=mydbname';
      $username = 'mydbuser';
      $password = 'myconfidentalpassword';
      $options = array(
      PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
      );
      $dbh = new PDO($dsn, $username, $password, $options);
      if(! $dbh )
      die('Could not connect: ' . mysql_error());


      $sql = 'select * from foo;';
      $retval = mysql_query( $sql, $conn );

      if(! $retval )
      die('Could not select data: ' . mysql_error());


      echo "Synced data successfullyn";
      mysql_close($conn);

      ?>


      The Error was:




      PHP Fatal error: Uncaught PDOException: SQLSTATE[HY000] [1045] Access
      denied for user 'mydbuser'@'localhost' (using password: YES) in
      /home/myuser/Projekte/Hibiscus_extend/Hib_Nightly_sync.php:8








      Stack trace:




      /home/myuser/Projekte/Hibiscus_extend/Hib_Nightly_sync.php(8):
      PDO->__construct('mysql: host=myse...', 'mydbuser',
      'myconfidentalpassword', Array)

      main thrown in
      /home/hri4wa1/Projekte/Hibiscus_extend/Hib_Nightly_sync.php on line 8





      What did I do wrong, and where?







      pdo mariadb






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 8 at 19:48









      E_net4

      12.8k73872




      12.8k73872










      asked Mar 8 at 17:25









      Heinz RiederHeinz Rieder

      111




      111






















          1 Answer
          1






          active

          oldest

          votes


















          1














          Oh Oh Oh!

          I found the solution!
          The reason for the connection problem were just the empty spaces in $dsn



          Wrong:

          $dsn = 'mysql: host=myserver:3307;dbname=mydbname';



          works fine

          $dsn = 'mysql:host=myserver:3307;dbname=mydbname';






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55068139%2funcaught-pdoexception-sqlstatehy000-1045-access-denied-for-user-hri4wa1-db%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Oh Oh Oh!

            I found the solution!
            The reason for the connection problem were just the empty spaces in $dsn



            Wrong:

            $dsn = 'mysql: host=myserver:3307;dbname=mydbname';



            works fine

            $dsn = 'mysql:host=myserver:3307;dbname=mydbname';






            share|improve this answer



























              1














              Oh Oh Oh!

              I found the solution!
              The reason for the connection problem were just the empty spaces in $dsn



              Wrong:

              $dsn = 'mysql: host=myserver:3307;dbname=mydbname';



              works fine

              $dsn = 'mysql:host=myserver:3307;dbname=mydbname';






              share|improve this answer

























                1












                1








                1







                Oh Oh Oh!

                I found the solution!
                The reason for the connection problem were just the empty spaces in $dsn



                Wrong:

                $dsn = 'mysql: host=myserver:3307;dbname=mydbname';



                works fine

                $dsn = 'mysql:host=myserver:3307;dbname=mydbname';






                share|improve this answer













                Oh Oh Oh!

                I found the solution!
                The reason for the connection problem were just the empty spaces in $dsn



                Wrong:

                $dsn = 'mysql: host=myserver:3307;dbname=mydbname';



                works fine

                $dsn = 'mysql:host=myserver:3307;dbname=mydbname';







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 8 at 17:50









                Heinz RiederHeinz Rieder

                111




                111





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55068139%2funcaught-pdoexception-sqlstatehy000-1045-access-denied-for-user-hri4wa1-db%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

                    Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

                    2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived