에러 모음
-
항해 1주차 File Zila - 오류:Connection timed out after 20 seconds of inactivity & 오류:서버에 연결하지 못함에러 모음 2023. 1. 17. 05:05
1.오류:Connection timed out after 20 seconds of inactivity https://sweetjey.tistory.com/9 2.오류:서버에 연결하지 못함 여러번 시도해도 서버와 연결하지 못한다는 오류가 떴다. myec2 삭제후 다시 '새사이트' 눌러서 myec2 입력후 프로토콜은 SFTP에 맞추고, 호스팅 번호 복붙, 포트는 강의에서 본대로 22나 윈도우는 3389로 시도해봄. 키펨도 확인했을 때 틀린부분이 없었다. 그럼에도 여전히 오류발생. 매니저님이 말씀하시길, 이번프로젝트 이전에 토이프로젝트와 과제제출에 같은 키팸이 쓰여서, 이게 쌓이고 쌓이다 보면 오류가 생긴다고 한다. 현재 이용중인 EC2는 프리키로 이런경우가 생긴다고 했던것같은데... 팀원하고 다른이야기 하고..
-
(미해결)ignoring input and appending output to 'nohup.out'에러 모음 2023. 1. 7. 16:11
Git Bash 에서 ignoring input and appending output to 'nohup.out' 이러한 오류가 뜨는데 뭔말이고 완두집사@DESKTOP-AOO0QV6 MINGW64 ~ $ ssh -i /c/Users/a/Desktop/sparta.pem ubuntu@13.125.28.208 Welcome to Ubuntu 20.04.5 LTS (GNU/Linux 5.15.0-1026-aws x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Sat Jan 7 ..
-
TypeError: Object of type set is not JSON serializable에러 모음 2023. 1. 7. 11:26
raise TypeError(f"Object of type {type(o).__name__} is not JSON serializable") TypeError: Object of type set is not JSON serializable 이런 에러가 떠서 무얼까 찾아보았는데 역시나...사소한 문제였다 앞전에 말했던 작은따옴표의 위치가 잘못되었다. @app.route("/todo", methods=["GET"]) def bucket_get(): todos_list = list(db.todo.find({},{'_id':False})) return jsonify({'todos:todos_list'}) 제일 막줄에 ({'todos:todos_list'})가 잘못쓴거임. ({'todos':todo_list}) ..