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

                    Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

                    Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

                    How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page