본문 바로가기

Programming304

[Ubuntu 18.04] Docker 및 potainer 설치 테스트 진행 [Ubuntu 18.04] Docker 및 potainer 설치 테스트 진행 출처 : Ubuntu 20.04 Docker 설치하기. - 달소씨의 하루 (dalso.org) Ubuntu 20.04 Docker 설치하기. - 달소씨의 하루 이번에는 Ubuntu 20.04 LTS Server 버전에서 Docker 설치를 한번 진행해보겠습니다. 설치방법은 매번 하던대로라서.. 크게 달라지지않지만 기록용으로 남겨봅니다. 설치하기전에 기본적으로 apt update & ap blog.dalso.org (1) 패키지 업데이트 $ sudo apt update & sudo apt upgrade (2) Docker 필수 패키지 설치 $ sudo apt-get install apt-transport-https ca-certi.. 2022. 3. 15.
[Docker] Docker 이용 MariaDB 설치 테스트 진행 [Docker] Docker 이용 MariaDB 설치 테스트 진행 출처 : Docker - 도커로 Mariadb 컨테이너 간편하게 설치하기 (tistory.com) Docker - 도커로 Mariadb 컨테이너 간편하게 설치하기 도커(Docker)를 이용하면 손쉽고 빠르게 Mariadb를 설치해서 사용할 수 있습니다. Mariadb 뿐만 아니라 가상화되어 있는 수많은 이미지들을 컨테이너로 만들어 사용할 수 있습니다. 처음 도커를 사용 7942yongdae.tistory.com $ sudo docker run \ > --name mariadb \ > -d \ > -p 3306:3306 \ > --restart=always \ > -e MYSQL_ROOT_PASSWORD=qwe123!@# \ > mariad.. 2022. 3. 14.
[RTSP] TCPClient를 이용하여 OPTIONS 요청 결과 받기 RTP 패킷에 대한 구조나 개념에 대한 학습 방법을 찾아 보고 있습니다. TCP 전문을 전송하여 OPTIONS 응답에 대한 결과를 받아 보는 테스트를 진행 하였습니다. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.Net.Sockets; namespace BlockingSocketTest { class Program { static void Main(string[] args) { TcpClient client = new TcpClient(new IPEndPoint(IPAddress.Parse("192.168.14.15"),0)); // RTSP.. 2022. 3. 3.
[RTSP] curl 명령어로 IP Camera 상태 체크 예시 출처 : Is it possible to do a simple health check of RTSP stream with curl tool? - Stack Overflow Is it possible to do a simple health check of RTSP stream with curl tool? I'm trying to do a simple health check of RTSP stream with curl tool. But command like this always gives me 404 Stream Not Found error: curl -v --url rtsp://192.168.1.80/h264/ --user admin:1234 ... stackoverflow.com 간단하게 IP Came.. 2022. 3. 2.