본문 바로가기
728x90
반응형

TroublesShooting5

[MYSQL / Database] ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost:3306' (10061) ERROR 2003 (HY000) 원인 ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost:3306' (10061) 1. mysql 서버가 작동되지 않는 경우 발생 2.root 비밀번호가 틀린경우 해결방법 1. mysql 서버가 작동되지 않는 경우 발생 작업관리자(ctrl + Alt + del) 를 실행 서비스에서 mysql를 찾아주고 활성화시켜줍니다. 2. root 비밀번호가 틀린경우 mysqld --skip -grant 명령 실행하여 암호없이 mysql에 접속할 수 있도록 설정 cmd 창을 새로 띄우고 mysql -u root mysql 로 root계정으로 접속 그뒤에 비밀번호 변경 mysqld --skip -grant mysql -u r.. 2023. 4. 12.
[MYSQL / Database] MySQL ERROR 1045 (28000): Access denied for user MySQL ERROR 1045 (28000) 원인 ERROR 1045 (28000): Access denied for user 'id'@'localhost' (using password: NO) 위의 에러는 비밀번호를 입력하지 않아서 나타나는 오류 입니다. ERROR 1045 (28000): Access denied for user 'id'@'localhost' (using password: yes) using passwd : yes 가 나타나는 이유는 비밀번호를 입력했지만 올바르지 않은 비밀번호를 입력했을 겨우 나타나는 에러입니다. 해결방법 비밀번호를 올바르게 적어주면 됩니다. 2023. 4. 12.
[MYSQL / Database] Error mysql ERROR 1396 (HY000) 사용자 제거시 mysql ERROR 1396 (HY000) 에러나 나올때 mysql ERROR 1396 (HY000) 원인 Create user/ grant 명령으로 사용자와 권한을 추가/ 관리해야 하는데, mysql.db, mysql.user 테이블을 직접 조작하다가 일관성이 깨졌기 때문이다. 해결방법 1. 기존의 데이터들이 깨끗하게 삭제해준다. delete from mysql.user where user='삭제할 아이디'; delete from mysql.db where user='삭제할 아이디'; drop user [userid@'host'] 먼저 계정을 삭제 해준다. flush privileges; 2. 아이디 새로 만들기 create user userid@'host' identified by '.. 2023. 4. 11.
[Database] mysql error - error code 1175 MYSQL 에러 - error code 1175 Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect. 0.000 sec 에러 원인 테이블에서 키값을 이용한 update나 delete만을 허용하도록 되어 있는데, 그렇지 않게 좀더 넓은 범위의 sql을 적용하려고 할때 workbench에서 경고를 주는것임. 즉 하나의 레코드만을 update, delete하도록 설정되어 있는데, 다수의 레코드를 upd.. 2023. 4. 10.
[ Troubleshooting ] deprecated gradle features were used in this build, making it incompatible with gradle 8.0. you can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. 오류 메세지 deprecated gradle features were used in this build, making it incompatible with gradle 8.0. you can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. => 사용되지 않는 Gradle 기능이 이 빌드에 사용되어 Gradle 8.0과 호환되지 않습니다. '--warning-mode all'을 사용하여 개별 사용되지 않는 경고를 표시하고 해당 경고가 사용자 자신의 스크립트 또는 플러그인에서 온 것인지 확인할 수 있습니다. 해결방법 2023. 3. 26.
728x90
반응형