eclipse svn password reset
eclipse svn password reset eclipse 의 svn 에서 비밀번호가 틀렸는데 다시 안물어볼 때 난감하다.ㅠㅍㅠ 아래의 디렉토리를 지우고 eclipse를 재시작하고 svn 연결시도를 하면 다시 인증하라는 팝업 창이 뜬다.(Windows 7 기준) C:\Users\사용자명\AppData\Roaming\Subversion\auth
eclipse svn password reset eclipse 의 svn 에서 비밀번호가 틀렸는데 다시 안물어볼 때 난감하다.ㅠㅍㅠ 아래의 디렉토리를 지우고 eclipse를 재시작하고 svn 연결시도를 하면 다시 인증하라는 팝업 창이 뜬다.(Windows 7 기준) C:\Users\사용자명\AppData\Roaming\Subversion\auth
mysql 을 처음 설치하면 기본으로 root passwd 는 엔터이고 유저명이 없는 아이디도 존재한다. 보안상 user 명이 없는 유저는 삭제하고 root에도 비밀번호를 걸어줘야한다.. 필요하다면 사용자를 추가해줘도 되고^^
1 2 3 4 5 6 7 8 9 10 11 12 |
~]$ mysql -u root -p Enter password: Welcome to the MySQL monitor.? Commands end with ; or \g. Your MySQL connection id is 6 to server version: 5.0.26-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> \u mysql Database changed mysql> update user set Password=password(<a href="mailto:'rlaalsgur!@#'">'root비밀번호'</a>) where User ='root'; mysql> delete from user where User =''; mysql> flush privileges; |