본문 바로가기

오류노트5

[오류노트] ==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-units === 개발하다보면 여러 부문에서 발견되는 오류이다 생각보다 간단하게 해결할 수 있다 관리자 권한이 없다는 것인데 su - root 를 통해서 관리자 권한 변경을 하던지 명령어 앞에 sudo ---- 를 붙여주면 된다. 2022. 5. 19.
[오류노트] SQL Error: 1366, SQLState: 22007, (conn=1160) Incorrect string value: JPA, AWS RDS, DATAGRIP 다음과 같은 오류가 발생하여 해결하는데 꽤 많은 시간이 걸렸다 [ 해결 방법 ] 1. RDS에서 파라미터 매니저 수정하기 나 같은 경우 이모지가 포함되어 있어서 CHARACTER_SET 을 모두 utf8mb4로 수정해주었다 2. 그리고 두번째로 DATAGRIP CONSOLE 창에서 ​ 성공! 2022. 5. 13.
[오류노트] npm ERR! code ERESOLVEnpm ERR! ERESOLVE unable to resolve dependency treenpm ERR!npm ERR! While resolving: test-react@0.1.0npm ERR! Found: react@18.0.0npm ERR! npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: test-react@0.1.0 npm ERR! Found: react@18.0.0 npm ERR! node_modules/react npm ERR! react@"^18.0.0" from the root project npm ERR! npm ERR! Could not resolve dependency: npm ERR! peer react@" 2022. 4. 12.
Mongo Server error (MongoQueryException): Query failed with error code 13 and error message 'command find requires authentication' on server 해결 Mongo Server error (MongoQueryException): Query failed with error code 13 and error message 'command find requires authentication' on server (MongoQueryException): Query failed with error code 13 오류 DB에 외부접속이 제한되어 있어서 생긴다 sudo vi /etc/mongod.conf 에 접속해서 다음과 같이 바꿔준다​ 기존에 security가 걸려 있는 모습이다 security에 주석처리 해주면 처리완료 다음으로 mongo를 다시시작해준다 2022. 3. 22.
[오류 노트] Got permission denied while trying to connect to the Docker socket at unix://var/run/docker.sock 오류 도커 오류 도커 초기오류 도커를 설치하고 컨테이너를 조회할때 오류 발생 Got permission denied while trying to connect to the Docker socket at unix://var/run/docker.sock 해결완료 sudo chmod 666 /var/run/docker.sock sudo chmod 666 /var/run/docker.sock ​ 2022. 2. 19.