728x90

bitvise

 

윈도우에서 사용할 수 있는 터널링 프로그램이다.

 

https://www.bitvise.com/

 

Bitvise: SSH software for Windows | Bitvise

Welcome to Bitvise! We specialize in secure remote access software for Windows. Our main products are Bitvise SSH Server and SSH Client, which we try to make the best SSH client and server for Windows. Our SSH Server provides secure remote access to Window

www.bitvise.com

 

728x90

'Server > Windows' 카테고리의 다른 글

window tail -f log.txt  (0) 2024.04.25
bitvise - windows 터널링  (0) 2023.03.29
728x90

IMMICH

 

구글포토를 대체할 프로젝트로 나옴 프로그램이다.

https://documentation.immich.app/

 

Home | Immich

immich Self-hosted photo and video backup solution directly from your mobile phone

documentation.immich.app

 

* 기능정리

비디오 및 사진 업로드 및 보기
앱 실행 시 자동 백업 해당 없음
백업을 위한 선택적 앨범 해당 없음
사진 및 비디오를 로컬 장치로 다운로드
다중 사용자 지원
앨범 및 공유 앨범
스크러빙/드래그 가능한 스크롤바
RAW 지원(HEIC, HEIF, DNG, Apple ProRaw)
메타데이터 보기(EXIF, 지도)
메타데이터, 개체 및 이미지 태그로 검색 아니요
관리 기능(사용자 관리) 해당 없음
백그라운드 백업 해당 없음
가상 스크롤
OAuth 지원
LivePhoto 백업 및 재생 아이폰 OS
사용자 정의 저장 구조
공개 공유 해당 없음

 

데모 : https://demo.immich.app/auth/login

 

Login

 

demo.immich.app

 

728x90

'Server > Application' 카테고리의 다른 글

Thingsboard Docker 설치 - IOT 플래폼  (0) 2023.03.30
Visual Studio Code Server  (0) 2023.03.29
모니터링 솔루션 checkmk  (0) 2023.03.29
tiddlywiki 티들리위  (0) 2023.03.29
아파치 과콰몰리 Ubuntu SSH 접근오류  (0) 2023.03.29
728x90

checkmk

 

모니터링 솔루션

 

https://checkmk.com/product

 

The Latest Version of Checkmk

The latest Checkmk release helps you manage your IT transformation - combining the best of both worlds for powerful and seamless hybrid IT monitoring

checkmk.com

 

728x90

'Server > Application' 카테고리의 다른 글

Thingsboard Docker 설치 - IOT 플래폼  (0) 2023.03.30
Visual Studio Code Server  (0) 2023.03.29
IMMICH - Google Photo 대체 프로젝트  (0) 2023.03.29
tiddlywiki 티들리위  (0) 2023.03.29
아파치 과콰몰리 Ubuntu SSH 접근오류  (0) 2023.03.29
728x90

alpine linux

 

저용량, 저사양 리눅스

https://www.alpinelinux.org/

 

index | Alpine Linux

 

www.alpinelinux.org

 

728x90

'Server > Linux' 카테고리의 다른 글

ubuntu 고정아이피  (0) 2023.04.01
iptable  (0) 2023.03.29
apache <-> tomcat 연동  (0) 2023.03.29
Linux SSH Tunneling  (0) 2023.03.29
iptable port forwarding  (0) 2023.03.29
728x90

아파치 http 서버와 tomcat 연동을 하기위해

mod_jk라는 아파치 모듈을 사용한다.

아래는 실제 구성한 설정 사진이다.

참고용으로 남긴다.

 

728x90

'Server > Linux' 카테고리의 다른 글

ubuntu 고정아이피  (0) 2023.04.01
iptable  (0) 2023.03.29
저용량, 저사양 리눅스  (0) 2023.03.29
Linux SSH Tunneling  (0) 2023.03.29
iptable port forwarding  (0) 2023.03.29
728x90

Linux SSH Tunneling 

공인아이피가 없는 외부접근이 안되는 컴퓨터를 외부접근이 가능한 서버로 연결

[ssh설정]

$ sudo nano /etc/ssh/sshd_config

AllowTcpForwarding yes
GatewayPorts yes

ssh 재시작
$ sudo systemctl restart sshd

[iptables 방화벽 해제]

sudo iptables -I INPUT -p tcp --dport 8080 -j ACCEPT

[예제]

예) 기숙사에 인는 컴퓨터에 접근하고 싶다.

A : 기숙사 컴퓨터 (인터넷은 되나 외부 연결이 안되어 있다.)

B : 외부접근이 가능한 서버 (아이피 : 1.1.1.1 임시설명을 위해)

 

1.1.1.1:8080 으로접근하면 A 컴퓨터의 8080으로 연결해준다.

ssh -i D:\dev\ssh\ocl\oracleCloudOpenSsh.ppk ubuntu@ksmcloud.duckdns.org -R 8080:localhost:8080

 

 

728x90

'Server > Linux' 카테고리의 다른 글

ubuntu 고정아이피  (0) 2023.04.01
iptable  (0) 2023.03.29
저용량, 저사양 리눅스  (0) 2023.03.29
apache <-> tomcat 연동  (0) 2023.03.29
iptable port forwarding  (0) 2023.03.29
728x90

 서버의 특정 포트로 들어오는 트래픽을 특정 ip 포트로 전달할때

sudo iptables -P FORWARD ACCEPT

sudo iptables -t nat -A PREROUTING -p tcp --dport 1111 -j DNAT --to-destination 1.1.1.1:22

sudo netfilter-persistent save

sudo iptables -nL -v -t nat

sudo service iptables restart

* 참고
iptables -L : iptables 룰 조회
iptables -nL : -n 옵션은 IP 를 숫자로 표현
iptables -nL -v : -v 옵션은 해당 룰을 hit 하는 패킷 표시
iptables -nL -v --line : 룰의 라인 번호 표시. input, delete 시 유용하다.
iptables -t nat -nL : nat 테이블 조회

 

728x90

'Server > Linux' 카테고리의 다른 글

ubuntu 고정아이피  (0) 2023.04.01
iptable  (0) 2023.03.29
저용량, 저사양 리눅스  (0) 2023.03.29
apache <-> tomcat 연동  (0) 2023.03.29
Linux SSH Tunneling  (0) 2023.03.29
728x90

파일하나로 정보 정리하기에 편한 티들리위키를 소개합니다.

해당 위키는 html 파일 하나로 이루어져고 Javascript로 개발되어 있다.

플러그인도 있고 스킨도 인터넷에 검색해보면 다양하다.

파일 하나로 이루어져 있어서 USB에 넣고 강의 메모등을 하기에 편해 보였다.

 

https://tiddlywiki.com/

 

TiddlyWiki — a non-linear personal web notebook

Please wait while TiddlyWiki is loading It looks like this browser doesn't run JavaScript . You can use one of these static HTML versions to browse the same content: https://tiddlywiki.com/static.html - browse individual tiddlers as separate pages https://

tiddlywiki.com

 

728x90

+ Recent posts