[질문]mysql 접근 거부문제입니다..

price의 이미지

저번에 mysql root 패스를 잃어버려

제 발급을 했습니다.

간단히 제가 한 과정입니다.

---------------------------------
먼저 데몬확인
#ps -ef | grep mysqld

데몬죽임-_-;

#killall myslqd

미사용모드로 mysql시작

#./safe_mysqld --skip-grant-tables&

mysql로 접속

# ./mysql -u root mysql

mysql>

update 문으로 root 사용자 패스변경

mysql> update user set password='00000' where user='root';

Query OK, 3 rows affected (0.00 sec)

Rows matched : 3 Changed : 3 Warnings :0

mysql> flush privileges;

Query OK, 0 rows affected (0.01 sec)

mysql> exit

Bye

실행중 mysql 죽임 -_-;

# killall

일반모드 재시작

# ./safe_mysqld&

-----------------------------------------------------------------

그런데 이런 메세지가....-_-;

# mysql -u root -p
Enter password:
ERROR 1045: Access denied for user : 'root@localhost' (Using password:YES)

이런 메세지가....-_-;;

도움을 바랍니다

redbaron의 이미지

저라면..

mysqladmin 을 사용하는 방법을 택하겠습니다.

mysqladmin 으로 다시 해보시길..

rubbe의 이미지

먼저 윗분 말이 전적으로 옳습니다.. 하하하..역시 knowlegeable user야..^^

>mysqladmin -u root password new-password

그러니까...

> mysqladmin -u root password 화이팅

이렇게 하면 암호가 화이팅이 되겠지요..

그럼 좋은 결과 있기를

price의 이미지

rubb 님 때문에 또 잘 해결했습니다..

감사합니다.... *^^*

즐거운 주말 되세요.....

[ShadowMind_Angels]
배움의 길은 멀고도 험하군요..............
진정한 배움의 길이란 ★━────

dgkim의 이미지

위에서와 같이 mysql에 접속해서 수정하는 방법을 사용할 수 있습니다.
그런데 에러가 난 이유는
위에서 password에서 Clear text를 넣으셨는데
mysql에서 암호 저장은 Clear text형태로 저장되지 않고 변조(?)되어 저장됩니다.
그래서 update시에는 변조된 것을 넣어야 하는데,

그렇게 어려운 것이 아닌 PASSWORD('암호')이 방법을 사용하시면 됩니다.
그래서

update user set password='clear' where user='root';
==> update user set password=PASSWORD('clear') where user='root';

이렇게 하시면 됩니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.