개발환경

Posts in 2025
  • tgdrive/rclone

    Tuesday, December 09, 2025 in 개발환경

    host 구성 패키지 설치 1 sudo dnf -y update && \ sudo dnf install -y unzip && curl -sSL instl.vercel.app/rclone | bash && sudo dnf remove -y unzip && \ cat ~/.config/rclone/rclone.conf crond 2 3 vi ~/.local/bin/rclone_move.sh …

    Read more

  • samba

    Tuesday, December 09, 2025 in 개발환경

    host 구성 설치 sudo dnf -y update && \ sudo dnf install -y samba wsdd && \ sudo systemctl enable wsdd && sudo systemctl enable smb && \ sudo systemctl restart wsdd && sudo systemctl restart smb && \ sudo …

    Read more

  • proxmox 기타 구성

    Tuesday, December 09, 2025 in 개발환경

    proxmox 기타 local-lvm 삭제 lvremove /dev/pve/data && \ lvresize -l +100%FREE /dev/pve/root && \ resize2fs /dev/mapper/pve-root node 이름 변경 TARGET_HOST=xxxxxxxx && \ sed -i "s/$TARGET_HOST/p6dhywxp/" /etc/hostname …

    Read more

  • postgresql

    Tuesday, December 09, 2025 in 개발환경

    graph LR subgraph gvp6nx1a A1[apps] <-- tcp --> B2[postgresql] end B2 <-- tcp --> D[client] host 구성 사설 인증서로 외부 접속 개방 sudo rm -rf /var/lib/pgsql && \ sudo dnf -y update && \ sudo dnf module remove -y postgresql:16/server …

    Read more

  • keepass openwrt sftp 구성

    Tuesday, December 09, 2025 in 개발환경

    graph LR subgraph agq3mbw2 A[openwrt] --- B1[keepass.kdbx] A[openwrt] --- B2[ssh] end B2 ---- D[duckdns] D <-- ssh --> C1[clients] C1 --- C2[keepass.keyx] openwrt 구성 포트 개방 vi /etc/config/firewall ... config redirect option dest 'lan' …

    Read more

  • wireguard

    Monday, December 08, 2025 in 개발환경

    graph LR subgraph iptables subgraph bridge-network A1[docker/wireguard] <--> B[docker] A2[apps] <--> B end subgraph host-network C[host] <--> C1[package/wireguard] end end A1 <-- udp --> D[client] C1 <-- udp --> D B …

    Read more

  • vsftpd

    Monday, December 08, 2025 in 개발환경

    graph LR subgraph gvp6nx1a A2[ssl-cert] --- A1 end A1[vsftpd] <-- tcp/tls --> B[client] A1[vsftpd] <-- ftp-passive --> B host 구성 포트 개방 sudo firewall-cmd --permanent --add-forward-port=port=6****:proto=tcp:toport=21 && \ sudo …

    Read more

  • oracle/instantclient

    Monday, December 08, 2025 in 개발환경

    container 구성 Dockerfile (x86) sudo vi /opt/instantclient/Dockerfile #FIXME: ubuntu 최신 버전 libaio1 없으므로 22.04로 build FROM ubuntu:22.04 ARG DEBIAN_FRONTEND=noninteractive ENV TZ=Asia/Seoul ENV ORACLE_HOME=/opt/oracle/instantclient ENV …

    Read more

  • nginx

    Monday, December 08, 2025 in 개발환경

    graph LR A5[server] <-- https --> B[nginx] subgraph gvp6nx1a A1[apps] <-- http --> B[nginx] A2[geoip] -- country-code --> B B -- log --> A3[promtail] A3 -- http --> A7[loki] A4[acme.sh] -- ssl-cert --> B end A7 <-- https …

    Read more

  • grafana

    Monday, December 08, 2025 in 개발환경

    graph TB subgraph gvp6nx1a A1[loki] -- http --> B[grafana] A2[postgresql] -- tcp --> B A3[prometheus] -- http --> B A4[postgres-exporter] -- http --> A3 A2 -- tcp --> A4 E1[promtail] -- http --> A1 E2[node-exporter] -- http --> …

    Read more