SQLSTATE[HY000] [1045] Access denied for user
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
add a comment |
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
add a comment |
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
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
server permissions mysql laravel
edited Dec 6 '17 at 4:16
Rooney
565518
565518
asked Dec 6 '17 at 4:11
yyusufaslanyyusufaslan
613
613
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This is because you did not grant access to that specific user on localhost. To remedy this, use this:
- Enter MySQL (watch out:
roothere 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
- 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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
This is because you did not grant access to that specific user on localhost. To remedy this, use this:
- Enter MySQL (watch out:
roothere 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
- 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.
add a comment |
This is because you did not grant access to that specific user on localhost. To remedy this, use this:
- Enter MySQL (watch out:
roothere 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
- 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.
add a comment |
This is because you did not grant access to that specific user on localhost. To remedy this, use this:
- Enter MySQL (watch out:
roothere 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
- 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.
This is because you did not grant access to that specific user on localhost. To remedy this, use this:
- Enter MySQL (watch out:
roothere 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
- 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.
edited Dec 6 '17 at 13:30
answered Dec 6 '17 at 13:24
Marc VanhoomissenMarc Vanhoomissen
89811119
89811119
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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