본문 바로가기

전체 글281

[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.
VirtualBox 호스트와 멀티캐스트(Multicast) 패킷 송/수신 테스트 진행 출처 : #8698 (VirtualBox Host-Only Network Adapter prevents multicast traffic) – Oracle VM VirtualBox #8698 (VirtualBox Host-Only Network Adapter prevents multicast traffic) – Oracle VM VirtualBox After installing Oracle VirtualBox and VirtualBox installing the "VirtualBox Host-Only Network" on my Windows 7 64-bit machine, I am no longer able to receive multicast streams on the host machine. This .. 2022. 3. 2.
Samba 및 NFS Server 구성 요소 설치 진행 하여 동일한 디렉터리 공유 진행 Samba 및 NFS Server 구성 요소 설치 진행 하여 동일한 디렉터리 공유 진행 [ 디렉터리 공유 진행 , 정상적인 방법은 아닐수도 있습니다 -.- ] 1. Samba 구성요소 설치 진행 $ sudo yum install samba* -y 2. smb.conf 파일 설정 진행 , data 디렉터리 및 data라는 명칭으로 디렉터리를 공유 진행 $ vi /etc/samba/smb.conf -------------------------------------------------------------------------------- # See smb.conf.example for a more detailed config file or # read the smb.conf manpage. # Run 't.. 2022. 3. 2.
[VWorldMap API] EPSG:4326 경도위도 값을 , EPSG:3857 좌표계로 변환 javascript 함수 변환 함수 출처 : coordinate system - Convert EPSG:4326 to EPSG:3857 in OpenLayers and React - Geographic Information Systems Stack Exchange Convert EPSG:4326 to EPSG:3857 in OpenLayers and React Is there a way to convert coordinates from EPSG:4326 to EPSG:3857 in OpenLayers. Or does any one have a method that does this in Javascript? gis.stackexchange.com Vworld Map 예제 출처 : 공간정보 오픈플랫폼 오픈API (vworld.kr.. 2022. 1. 9.
[전자정부프레임워크3.9] 클라이언트에서 요청 시에 CORS 오류 발생 관련 처리 사항 [전자정부프레임워크3.9] 클라이언트에서 요청 시에 CORS 오류 발생 관련 처리 사항 출처입니다. : [Spring Boot] CORS 설정하기 (tistory.com) [Spring Boot] CORS 설정하기 CORS란? (Cross-Origin Resource Sharing,CORS) 란 다른 출처의 자원을 공유할 수 있도록 설정하는 권한 체제를 말합니다. 따라서 CORS를 설정해주지 않거나 제대로 설정하지 않은 경우, 원하는대로 리소스를 dev-pengun.tistory.com Controller의 CORS 관련 예외 처리를 진행 할 메서드마다 아래 사항을 추가 하였으나 , 해결 되지 않았습니다. response.setHeader("Access-Control-Allow-Origin","*"); .. 2021. 12. 1.
[Apache FTPClient] Filezilla Server와 Apache FTPClient 이용 파일 업로드 시에 425 Can't open data connection for transfer of "/" 메시지 발생시에 처리 방안 [Apache FTPClient] Filezilla Server와 Apache FTPClient 이용 파일 업로드 시에 425 Can't open data connection for transfer of "/" 메시지 발생시에 처리 방안 환경 FTP Server - FileZilla Server [ Windows Server 2012 Std ] FTP Client - Tomcat 8.5 [Linux RedHat 7.5] FileZilla Server가 운영 중인 서버에서는 FTP Client가 접근하는 Host IP 는 허용 되어 있는 상황입니다. FTP Client 입장인 , RedHat Linux의 Firewalld Service가 구동 중인 상태에서 , FTP File Uploading 처리 시에 .. 2021. 11. 26.
[ASP.NET] NAS 영역 접근 identity impersonate 사용 한 사례 [ASP.NET] NAS 영역 접근 identity impersonate 사용 한 사례 WebSite Behind Code [ aspx.cs ] 페이지에서 , NAS [ Network Access Strorage ] 에 접근이 필요 한 케이스 였고 NAS에 인증 부분은 UserID 와 , Password를 이용한 인증 방식 이었습니다. WINAPI 함수를 이용하여 접근 시에 , NAS 영역에 정상적으로 Access가 되나 , NAS 영역에 디렉터리 생성 시에는 권한 관련 오류가 발생 하였습니다. [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] public struct NETSOURCE { public uint dwScope; public ui.. 2021. 11. 8.