일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 코루틴 컨텍스트
- table not found
- mp4fpsmod
- 겨울 부산
- tolerated
- JanusGateway
- pytest
- k8s #kubernetes #쿠버네티스
- taint
- preemption #
- JanusWebRTCServer
- 달인막창
- Spring Batch
- 코루틴 빌더
- vfr video
- 티스토리챌린지
- JanusWebRTCGateway
- 오블완
- JanusWebRTC
- kotlin
- 개성국밥
- 깡돼후
- 자원부족
- terminal
- python
- PersistenceContext
- Value too long for column
- PytestPluginManager
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- VARCHAR (1)
목록개발 (101)
너와 나의 스토리
에러 로그:0/9 nodes are available: 1 node(s) had untolerated taint {node-role.dkosv3.9rum.cc/lb: true}, 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 Insufficient cpu. preemption: 0/9 nodes are available: 4 Preemption is not helpful for scheduling, 5 No preemption victims found for incoming pod..쿠버네티스에서 pod를 스케줄링할 수 없음을 나타내는 에러 메시지 에러 메시지 해석0/9 nodes are available:Kubernetes ..
gem으로 fluentd를 설치하려 했더니 에러가 발생했다.에러 로그:MacBook-Pro-417:seojeongyu$ gem install fluentd/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin23/rbconfig.rb:21: warning: Insecure world writable dir /Users/seojeongyu in PATH, mode 040777ERROR: While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /Library/Ruby/Gems/2.6.0 ..
Python 버전이 높아서 호환성에 문제가 생겨서 downgrade를 하려고 한다. 기존 python과 pip 삭제brew uninstall --ignore-dependencies pythonbrew cleanupsudo rm -rf /usr/local/bin/python3sudo rm -rf /usr/local/bin/pip3 Python 3.9.0 설치brew install pyenvpyenv install 3.9.0pyenv global 3.9.0
문제: brew upgrade, uninstall 등 무언가를 할 때마다 아래의 에러 발생Error: Unexpected method 'appcast' called on Cask adoptopenjdk13.Follow the instructions here: https://github.com/Homebrew/homebrew-cask#reporting-bugsseojeongyu@MacBook-Pro-417 ~ % brew untap AdoptOpenJDK/openjdk Error: Unexpected method 'appcast' called on Cask adoptopenjdk13.Follow the instructions here: https://github.com/Homebrew/homeb..
1. Docker build 베이스 코드: https://github.com/baiyongzhen/webrtc-janus 여기서 dockerfile을 아래와 같이 수정 출처: https://github.com/agonza1/Janus-webrtc-server-container/blob/main/Dockerfile FROM debian:latest ENV BUILD_FOLDER /tmp/build ENV WORK_FOLDER /opt ENV VENV_PATH=/opt/venv RUN mkdir -p ${BUILD_FOLDER} RUN mkdir -p ${WORK_FOLDER} RUN apt-get update && apt-get install -y --fix-missing \ libmicrohttpd-de..
Janus WebRTC Media Server 실행 Janus-webrtc-server-container pull 받아오기 docker image build $ docker build -t janus-server . docker 실행 $ docker run -p 8088:8088 janus-server 실행 확인 http://localhost:8088/janus/info에 접속해서 아래처럼 나오면 정상 실행된 것 리액트 앱 실행 여기서 pull 받아오기 앱 실행 yarn install yarn start http://localhost:3000/에 접속 (자동으로 페이지가 열림) 다른 브라우저에서 추가로 접속하면 participant에 카메라 화면이 추가로 미러링 됨 참고 - https://webrtc.v..
Launchd란? 시스템 서비스 관리자 운영 체제 부팅 시 가장 먼저(자동) 실행되는 첫 번째 프로세스 launchd 프로세스를 사용하여 셸 스크립트를 시행할 수 있다 시스템 이벤트 및 스케쥴에 따라 다양한 작업을 실행함 시스템의 초기화 및 서비스 프로세스를 시작하고 관리하여 전반적인 시스템 동작을 조정함 launchd 간단 예제: python 서버 띄우기 Step 1: Launchd 작업 파일 생성 ~/Library/LaunchAgents 하위에 'com.example.webserver.plist' 파일 생성하여 아래의 내용 작성 Label com.example.webserver ProgramArguments /usr/bin/python3 -m http.server 8080 RunAtLoad Step..
* 아래 내용은 '벨로퍼트와 함께하는 모던 자바스크립트' 튜토리얼을 따라 요약 또는 내용 추가한 것으로 자세한 내용은 해당 강의를 참고해 주시기 바랍니다. 새 프로젝트 만들기 1. 리액트 프로젝트 만들기 $ npx create-react-app begin-react 2. 프로젝트 실행시키기 $ cd begin-react $ yarn start 이러면 아래 사진과 같이 "http://localhost:3000/" 페이지가 자동으로 열린다. 컴포넌트 만들기 1. src 디렉터리에 Hello.js라는 파일 작성 컴포넌트는 함수형태 또는 클래스 형태로 작성할 수 있다. export default로 컴포넌트 내보내기를 하면 다른 컴포넌트에서 불러와서 사용 수 있다. import React from 'react';..