본문 바로가기

에러61

[Jupyter Notebook] OSError: [Errno 99] Cannot assign requested address 에러 우분투 서버에서 주피터 노트북 실행 시 발생하는 에러로 OSError: [Errno 99] Cannot assign requested address 라고 주소를 할당할 수 없다는 메시지가 출력된다. 이는 ip 주소를 제대로 지정해주지 못한 경우로 다음과 같이 -ip=0.0.0.0 으로 지정해주면 정상적으로 실행된다. jupyter notebook –ip=0.0.0.0 –port=8888 –allow-root 2021. 1. 8.
[Python] urllib has no attribute quote 에러 urllib.quote() 를 사용하고자 할 때 생기는 에러로 urllib has no attribute quote 다음과 같이 quote가 없다고 에러를 발생시킨다. 이럴 경우 urllib가 아니라 urllib.parse 를 임포트한 후 사용하면 된다. import urllib.parse urllib.parse.quote("test") 2021. 1. 8.
[MongoDB] Username and password must be escaped according to RFC 3986, use urllib.parse.quote_plus() 에러 몽고디비를 불러올 때 발생하는 에러로 유저네임이나 패스워드에 문제가 있을 때 발생한다. 에러Username and password must be escaped according to RFC 3986, use urllib.parse.quote_plus() 해결mongo_uri = "mongodb://username:" + urllib.quote("password") + "@127.0.0.1:27001/" urllib.quote를 사용해 유저네임이나 패스워드를 따로 분리해 적용하면 된다 2021. 1. 8.
error: Your local changes to the following files would be overwritten by merge 에러 git pull 시 충돌 에러 error: Your local changes to the following files would be overwritten by merge: Please, commit your changes or stash them before you can merge. Aborting -> git stash 명령으로 스킵 2021. 1. 8.
[Spring] com.amazonaws.sdkclientexception failed to connect to service endpoint 에러 Spring 실행 시 발생하는 에러로 AmazonS3ClientBuilder .standard() .withCredentials(new AWSStaticCredentialsProvider(awsCredentials)) .withEndpointConfiguration(new AwsClientBuilder.EndpointConfiguration("https://s3.us-east-1.amazonaws.com", "us-east-1")) .build(); Endpoint를 추가하여 실행해보기 바란다 2020. 12. 27.
[Spring] error creating bean with name s3 에러 Spring 실행 시 발생하는 에러로 resouces - application.properties 파일에 cloud.aws.stack.auto=false 추가 2020. 12. 27.