SQLSTATE[HY000] [1045] Access denied for user












1















I have started my first website (in development) with a simple authentication structure. When I run my website with Homestead, database connection does not work. Actually I can run any mysql command from terminal or mysql workbench, but when I try from browser(homestead.app) , I get this error.



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


Here my .env information.



DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret



I changed the permission and restarted server but same result !



Can anyone help please ?










share|improve this question





























    1















    I have started my first website (in development) with a simple authentication structure. When I run my website with Homestead, database connection does not work. Actually I can run any mysql command from terminal or mysql workbench, but when I try from browser(homestead.app) , I get this error.



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


    Here my .env information.



    DB_CONNECTION=mysql
    DB_HOST=localhost
    DB_PORT=3306
    DB_DATABASE=homestead
    DB_USERNAME=homestead
    DB_PASSWORD=secret



    I changed the permission and restarted server but same result !



    Can anyone help please ?










    share|improve this question



























      1












      1








      1








      I have started my first website (in development) with a simple authentication structure. When I run my website with Homestead, database connection does not work. Actually I can run any mysql command from terminal or mysql workbench, but when I try from browser(homestead.app) , I get this error.



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


      Here my .env information.



      DB_CONNECTION=mysql
      DB_HOST=localhost
      DB_PORT=3306
      DB_DATABASE=homestead
      DB_USERNAME=homestead
      DB_PASSWORD=secret



      I changed the permission and restarted server but same result !



      Can anyone help please ?










      share|improve this question
















      I have started my first website (in development) with a simple authentication structure. When I run my website with Homestead, database connection does not work. Actually I can run any mysql command from terminal or mysql workbench, but when I try from browser(homestead.app) , I get this error.



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


      Here my .env information.



      DB_CONNECTION=mysql
      DB_HOST=localhost
      DB_PORT=3306
      DB_DATABASE=homestead
      DB_USERNAME=homestead
      DB_PASSWORD=secret



      I changed the permission and restarted server but same result !



      Can anyone help please ?







      server permissions mysql laravel






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 6 '17 at 4:16









      Rooney

      565518




      565518










      asked Dec 6 '17 at 4:11









      yyusufaslanyyusufaslan

      613




      613






















          1 Answer
          1






          active

          oldest

          votes


















          0














          This is because you did not grant access to that specific user on localhost. To remedy this, use this:




          1. Enter MySQL (watch out: root here is the MySQL root, NOT the ubuntu root - you could also use other users having sufficient access level):



          $ mysql --user=root --password=root_password homestead




          1. In MySQL, grant access like this (in this case, create the user 'homestead'@'localhost' and give him select privileges on everything from DB homestead):



          CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret';
          GRANT SELECT PRIVILEGES ON homestead.* to 'homestead'@'localhost' IDENTIFIED BY 'secret';



          Refer to the MySQL manual for more info on other options.



          This being said, you might preferably post such questions on other sites dedicated to DB administration.






          share|improve this answer

























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            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%2faskubuntu.com%2fquestions%2f983645%2fsqlstatehy000-1045-access-denied-for-user%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









            0














            This is because you did not grant access to that specific user on localhost. To remedy this, use this:




            1. Enter MySQL (watch out: root here is the MySQL root, NOT the ubuntu root - you could also use other users having sufficient access level):



            $ mysql --user=root --password=root_password homestead




            1. In MySQL, grant access like this (in this case, create the user 'homestead'@'localhost' and give him select privileges on everything from DB homestead):



            CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret';
            GRANT SELECT PRIVILEGES ON homestead.* to 'homestead'@'localhost' IDENTIFIED BY 'secret';



            Refer to the MySQL manual for more info on other options.



            This being said, you might preferably post such questions on other sites dedicated to DB administration.






            share|improve this answer






























              0














              This is because you did not grant access to that specific user on localhost. To remedy this, use this:




              1. Enter MySQL (watch out: root here is the MySQL root, NOT the ubuntu root - you could also use other users having sufficient access level):



              $ mysql --user=root --password=root_password homestead




              1. In MySQL, grant access like this (in this case, create the user 'homestead'@'localhost' and give him select privileges on everything from DB homestead):



              CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret';
              GRANT SELECT PRIVILEGES ON homestead.* to 'homestead'@'localhost' IDENTIFIED BY 'secret';



              Refer to the MySQL manual for more info on other options.



              This being said, you might preferably post such questions on other sites dedicated to DB administration.






              share|improve this answer




























                0












                0








                0







                This is because you did not grant access to that specific user on localhost. To remedy this, use this:




                1. Enter MySQL (watch out: root here is the MySQL root, NOT the ubuntu root - you could also use other users having sufficient access level):



                $ mysql --user=root --password=root_password homestead




                1. In MySQL, grant access like this (in this case, create the user 'homestead'@'localhost' and give him select privileges on everything from DB homestead):



                CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret';
                GRANT SELECT PRIVILEGES ON homestead.* to 'homestead'@'localhost' IDENTIFIED BY 'secret';



                Refer to the MySQL manual for more info on other options.



                This being said, you might preferably post such questions on other sites dedicated to DB administration.






                share|improve this answer















                This is because you did not grant access to that specific user on localhost. To remedy this, use this:




                1. Enter MySQL (watch out: root here is the MySQL root, NOT the ubuntu root - you could also use other users having sufficient access level):



                $ mysql --user=root --password=root_password homestead




                1. In MySQL, grant access like this (in this case, create the user 'homestead'@'localhost' and give him select privileges on everything from DB homestead):



                CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret';
                GRANT SELECT PRIVILEGES ON homestead.* to 'homestead'@'localhost' IDENTIFIED BY 'secret';



                Refer to the MySQL manual for more info on other options.



                This being said, you might preferably post such questions on other sites dedicated to DB administration.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Dec 6 '17 at 13:30

























                answered Dec 6 '17 at 13:24









                Marc VanhoomissenMarc Vanhoomissen

                89811119




                89811119






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • 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%2faskubuntu.com%2fquestions%2f983645%2fsqlstatehy000-1045-access-denied-for-user%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

                    Category:香港粉麵

                    List *all* the tuples!

                    Channel [V]