DEV
-
Redis/MacOs Redis 설치DEV/other things 2024. 8. 29. 10:03
1. 설치brew install redis + brew가 설치되어 있지 않은 경우...https://seokbong.tistory.com/5 Mac OS Brew 설치(본 내용은 M1 Mac OS를 기반으로 합니다. Intel Mac 또한 path 설정을 제외하고 비슷할 것으로 예상) Mac OS 에서 Brew 설치 방법을 알아보자. 우선 Brew 홈페이지에 접속한다. 주소는 다음과 같다. https://breseokbong.tistory.com 2. redis 서버 실행redis-server 3. 새로운 터미널을 통해 cli 실행redis-cli
-
Redis/MacOs Redis 설치 후 "Could not connect to Redis at 127.0.0.1:6379: Connection refused" 에러DEV/other things 2024. 8. 29. 10:01
MacOs에서 Redis를 설치한 후 Could not connect 에러가 발생. 에러(base) iMac:~ seokbong$ redis-cliCould not connect to Redis at 127.0.0.1:6379: Connection refusednot connected> 다른 블로그의 글을 봤는데 나에게는 해당이 되지 않았고 그냥 재실행 하니 되었음. 재실행(base) iMac:~ seokbong$ brew services restart redis==> Successfully started `redis` (label: homebrew.mxcl.redis)(base) iMac:~ seokbong$ redis-cli127.0.0.1:6379> brew로 설치하였기 때문에 "brew servi..
-
NLP 자연어 처리 정리 1DEV/nlp 2024. 8. 22. 10:57
[노트]자연어 처리 - Speech Recognition (음성 인식) - Translation (번역) - Text Summary (요약) - Text Classification (분류) 자연어 처리의 요소들 - Sentiment Analysis : 텍스트에 녹아 있는 감성 또는 의견을 파악 - Tokenization : 단어의 최소한의 의미를 파악하는 쪼개기 - Named Entity Recognition : 텍스트로부터 주제 파악하기 - Normalization : 의도된 오타 파악하기 - Dependenct Parsin : 문장 구성 성분의 분석 - Feature Analysis : 음성 데이터로부터 특징을 추출 - Language Model : 언어별로 갖고 있는 특성을 반영 - Deep Lea..
-
Certbot을 통해 무료 SSL 발급받기(임시 및 갱신)DEV/other things 2024. 8. 19. 18:01
certbot으로 ssl 발급 - 도메인은 미리 준비하자 - 가비아와 같은 서비스를 이용하면 저렴하게 이용 가능한 도메인이 존재함// apt updatesudo apt update// certbot 설치sudo apt install certbot python3-certbot-nginx// nginx에서 발급받아야 함.// systemctl status nginxsudo systemctl stop nginx// 방화벽 확인sudo ufw allow 80sudo ufw allow 443// 도메인은 미리 준비하자. (본인은 가비아 사용)sudo certbot --standalone -d certonly// 다음과 같이 진행됨// Saving debug log to /var/log/letsencrypt/le..