전체 글325 [Docker Image Ubuntu 24.04.1] MariaDB Image에 FullText 검색Engine Mroonga 설치 테스트 진행 Docker Image는 Ubuntu 24.04.1 이며 , MariaDB 의 경우 version은 11.7.2-MariaDB-ubu2404 인 상황 입니다. (1). docker image 의 bash 를 진입 하였습니다.$ docker exec -it mariadb /bin/bash 출처 : http://mroonga.org/docs/install/ubuntu.html 2.4. Ubuntu — Mroonga v15.11 documentation2.4. Ubuntu This section describes how to install Mroonga related deb packages on Ubuntu. You can install them by apt. 2.4.1. PPA (Personal Packa.. 2025. 6. 17. [Rocky Linux 9.5] Local Repository 연결 및 postgresql offline 설치 테스트 (1) Rocky Linux 9.5 Full ISO 를 mount 먼저 진행 하였습니다.$ sudo blkid // DVD ROM 경로 확인# sudo mount /dev/sr0 /mnt (2) local-rocky.repo 라는 명칭으로 repository 정보를 작성 하였습니다.ISO 이미지에서 GPG 키를 찾을 수 없어서 /etc/pki/rpm-gpg/RPM-GPG-KEY-Rocky-9 파일의 경로를 명시 해 주었습니다.$ sudo vi /etc/yum.repos.d/local-rocky.repo[local-baseos]name=Rocky Linux 9.5 Local Repo - BaseOSbaseurl=file:///mnt/BaseOS/enabled=1gpgcheck=1gpgkey=file:///.. 2025. 6. 15. [Rocky Linux 9.5] openjdk 21 , node.js , pm2 offline 설치 테스트 진행 (1). openjdk 21의 경우 rpm 을 받아 설치 진행 하였습니다.https://download.oracle.com/java/21/latest/jdk-21_linux-x64_bin.rpmhttps://www.oracle.com/kr/java/technologies/downloads/#java21 Download the Latest Java LTS FreeSubscribe to Java SE and get the most comprehensive Java support available, with 24/7 global access to the experts.www.oracle.com$ sudo dnf install jdk-21_linux-x64_bin.rpm (2). node.js 는 Standar.. 2025. 6. 4. [Rocky Linux 9.5] offline 환경에서 docker 설치 진행 podman 이 아직 익숙치 않고 ;ㅁ; docker-compose.yaml 스크립트를 편리하게 사용 하기 위하여 rocky linux 9.5에 docker 전체 구성 요소 를 설치 시도 해보았습니다. (1). Ubuntu 설치 테스트 시와 동일하게 centos 9.5 stable 링크로 접속하여 최종 release의 rpm 파일을 다운로드 진행 하였습니다. https://download.docker.com/linux/centos/9/x86_64/stable/Packages/ Index of linux/centos/9/x86_64/stable/Packages/ download.docker.com (2). 오프라인 환경 에서 다운로드 rpm 파일들을 설치 시도 하였지만 , 추가적인 의존성이 필요한 pa.. 2025. 6. 3. [C# .NET] 잘못 된 Token 형식의 PDF 문서 읽기 시도 Nuget Package 관리자 콘솔을 이용 하여 PdfSharp , PdfiumViewer package를 설치 진행 한 후에 잘못 된 형식의 PDF 문서의 PageCount 를 확인 시도 진행 해보았습니다. PdfSharp의 경우 , PdfSharp Package 만 설치하여도 동작하는데는 크게 어려움이 없었으나PdfiumViewer의 경우 , PdfiumViewer Package와 , PdfiumViewer.Native Packge를 설치 해줘야 오류가 발생하지 않습니다( 해당 native의 경우 Application이 x86 입니다. , x64 전용 native Library가 따로 존재 합니다. ) using System;using PdfSharpDocument = PdfSharp.Pdf.Pd.. 2025. 5. 28. [SpringBoot] Apache MINA 를 이용한 Sftp 접속 및 파일 업로드 예제 입니다. 1. maven repository 사이트에서 직접 3개의 jar 파일을 다운로드 하고 , implementation 진행 하였습니다. sshd-common-2.15.0.jarsshd-core-2.15.0.jarsshd-sftp-2.15.0.jar //mina sshd implementation name : 'sshd-core-2.15.0' //mina sshf-sftp implementation name : 'sshd-sftp-2.15.0' //min sshd-common implementation name : 'sshd-common-2.15.0' 2. Sftp 에 접속 하여 파일 업로드 하는 예제를 작성 해 보았습니다.import java.nio.file.Files;import java.nio.fi.. 2025. 5. 11. [Ubuntu 24.04] openssh-server offline 설치 테스트 1. 인터넷이 연결되어 있는 동일한 Ubuntu 환경 에서 deb 파일을 받아서 설치 시도 하였습니다.$ sudo apt-get update$ sudo apt-get install --download-only openssh-server 2. 다운로드 된 deb 파일들은 해당 디렉터리에서 확인 할 수 있었습니다 .$ cd /var/cache/apt/archives/openssh-client_1%3a9.6p1-3ubuntu13.11_amd64.debopenssh-server_1%3a9.6p1-3ubuntu13.11_amd64.debopenssh-sftp-server_1%3a9.6p1-3ubuntu13.11_amd64.deb3. 오프라인 환경에서 dpkg -i *.deb로 설치 시도 시에 아래와 같은 에러가.. 2025. 4. 30. [Ubuntu 24.04] Docker Offline으로 설치 테스트 1. https://download.docker.com/linux/ubuntu/dists/noble/pool/stable/amd64/ 에서 최신 deb 파일들을 다운로드 하였습니다.dists / { version_codename} / pool / stable / {아키텍쳐 } 24.04의 경우 noble 이었습니다. 2. 오프라인 환경의 ubuntu에 다운로드 한 .deb 파일을 복사한 후 설치 하였습니다.$ sudo dpkg -i *.deb $ sudo docker ps -a 명령어가 실행 되는 것 확인 하였습니다. 사용자 계정에도 docker 명령어 실행 시에 sudo 없이 실행 하기 위하여 $ sudo usermod -aG docker {사용자계정} 을 실행 하였습니다. $ sudo syst.. 2025. 4. 23. [nestjs] luxon 을 이용하여 심플하게 날짜 및 시간 포멧팅 처리 예제 string type의 날짜 시간 형태의 문자열을 DateTime으로 변환 후 , 원하는 포멧으로 변경 하여 리턴 하는 예제 와 ,,, 현재 일시에서 날짜 연산을 진행 하여 원하는 포멧으로 리턴 하는 예제 작성 해 보았습니다.import { Logger } from "@nestjs/common";import { DateTime } from "luxon";export class CnvDateStrHelper { private static readonly logger = new Logger(CnvDateStrHelper.name); static convListDateTimeStr(sourceStr : string) : string { try { return DateTime.fromFor.. 2025. 4. 4. 이전 1 2 3 4 ··· 37 다음