error records (33) 썸네일형 리스트형 [Error] MySql: Access denied for user 'root'@'localhost' mysql 비밀번호가 초기화 되지 않아서 생기는 문제 로그인 시 권한 정보를 확인하는 테이블을 일시적으로 스킵하여 로그인할 수 있게 만든 후, DB정보를 바꾸고 다시 재시작해야한다. 1. mysql 종료 sudo /etc/init.d/mysql stop 2. mysql 데몬 직접 실행 sudo /usr/sbin/mysqld --skip-grant-tables --skip-networking & 3. mysql 접속 ( 비밀번호 없이 접속하기) mysql -u root 4. 'mysql' 입장 use mysql; 5. 비밀번호 변경 UPDATE user SET authentication_string=PASSWORD('바꿀 비번 ') where USER='root'; flush privileges; 끝! [webpack ERROR] $RefreshSig$ is not defined npm run dev 명령을 실행하고 터미널에는 successfully 라고 뜨고 브라우저에 아래와 같은 $RefreshSig$ is not defined ERROR 가 나왔다 My guess is that you've included the react-refresh/babel plugin to process node_modules. This will break because some code (as used by Webpack and WDS) will inevitably run before the plugin 출처 :https://github.com/pmmmwh/react-refresh-webpack-plugin/issues/92 이유가 node_modules를 처리하기위해 react-refresh/b.. [webpack error] code: 'ERR_INVALID_ARG_TYPE' npm run build 를 실행하다가 나타난 code: 'ERR_INVALID_ARG_TYPE' 에러 메세지 배포용으로 빌드할 때의 webpack.config.js 설정은 개발 설정과 다르게 plugin의 ReactRefreshWebpackPlugin 이 있으면 안된다고 한다. 배포용으로 만들 때 제거해야할 것 ↓↓ ReactRefreshWebpackPlugin React-refresh/babel 개발일 때는 가능 / 배포용일 때는 주석처리하기 ->아래처럼 주석처리를 하고 다시 npm run build를 하니깐 되었다 ! const path = require('path') //const RefreshwebpackPlugin = require('@pmmmwh/react-refresh-webpack-plu.. [Webpack error] unable to resolve dependency tree webpack 설치 / 환경 설정 중 아래 코드가 계속 에러가 났다. 아래의 pmmmwh ~ 을 실행시켜야하는데 오류가 뜸.. $ npm install -D @pmmmwh/react-refresh-webpack-plugin 오류 메세지 : unable to resolve dependency tree dependency tree를 잘 찾지 못한다는 것 같다. 해결 방법 : 아래 명령어 실행 npm install -D @pmmmwh/react-refresh-webpack-plugin --save --legacy-peer-deps 위의 코드를 실행해주니 해결이 되었다!! [mysql] Please install mysql2 package manually ERROR 에러처리 방법 sequelize-auto 명령어 실행 오류로 $sequelize-auto -o"./models" -d class -h localhost -u root -p 3306 -x root -e mysql $npm install -g sequelize-auto global로 설치 후 $npx sequelize-auto -o "./models" -d class -h localhost -u root -p 3306 -x [비번] -e mysql 이렇게 명령 실행을 했는데 [ERROR] Please install mysql2 package manually 에러가 났다. mysql2 도 이미 깔아주었는데 수동으로 다시 설치하라니 ??? 오류 해결법 찾아보니 매우 간단했다! 해결법 $npm install -g mysql2 .. Github PUSH ERROR 403 The requested URL returned error / remote: Permission .git denied to / Fetal : unable to access 5. git push origin master github 저장소로 PUSH ! 넣기 Push 할 때 많이 뜨는 ERROR 403 remote: Permission to ohse-emily/JavaScript.git denied to LSH7875. fatal: unable to access 'https://github.com/ohse-emily/JavaScript.git/' : The requested URL returned error: 403 주의할 점 * 여기서 ERROR 403이 뜬다면 이는 github에 코드를 PUSH할 때 해당 주소에 대한 권한이 없기 때문에 거절당한다. 해결 방법 (1) 1. git remote set-url origin https://github-username@githu.. github remote origin already exists 에러 / 저장소에 코드 추가 에러 해결 방법 github에 코드를 넣을 때 자주 발생하는 에러 github remote origin already exists 4. git remote add origin [url주소] git hub의 내 저장소, repository로 보내기 git hub에서 본인이 만든 저장소의 주소를 복사 해서 git remote add orgin url주소 명령어 입력하면 된다. * 여기서 ERROR 가 많이 나온다. git remote add origin [url주소] 를 정상적으로 입력해도 나의 github저장소에는 코드가 잘 도착하지 않았다. -> 다시 위의 명령어를 입력하니 ERROR: remote origin already exists. 라고 나온다. 이 때 해결 방법은 기존의 했던 것을 삭제하고 1. git remo.. code: 'ER_ACCESS_DENIED_ERROR', errno: 1045, sqlMessage: "Access denied for user 'root'@'localhost' (using password: YES)", sqlState: '28000', fatal: true code: 'ER_ACCESS_DENIED_ERROR', errno: 1045, sqlMessage: "Access denied for user 'root'@'localhost' (using password: YES)", sqlState: '28000', fatal: true server 를 키려고 하니 에러가 떴다. 생각해보니 비밀번호 잘못 입력했음 위의 오류는 내가 js에 넣은 정보와 불러와지는 marisDB의 정보와 일치하지 않을 때 발생하는 듯 하다. Error: listen EADDRINUSE: address already in use :::3000 Node.js 의 에러 throw er; // Unhandled 'error' event ^ Error: listen EADDRINUSE: address already in use :::3000 3000 이미 사용 중 이미 사용 중인 3000을 강제 삭제하고 하기 이전 1 2 다음