'Server > Windows' 카테고리의 다른 글
window tail -f log.txt (0) | 2024.04.25 |
---|---|
bitvise - windows 터널링 (0) | 2023.03.29 |
window tail -f log.txt (0) | 2024.04.25 |
---|---|
bitvise - windows 터널링 (0) | 2023.03.29 |
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
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 |
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 |
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 |
아파치 http 서버와 tomcat 연동을 하기위해
mod_jk라는 아파치 모듈을 사용한다.
아래는 실제 구성한 설정 사진이다.
참고용으로 남긴다.
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 |
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
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 |
서버의 특정 포트로 들어오는 트래픽을 특정 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 테이블 조회
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 |
파일하나로 정보 정리하기에 편한 티들리위키를 소개합니다.
해당 위키는 html 파일 하나로 이루어져고 Javascript로 개발되어 있다.
플러그인도 있고 스킨도 인터넷에 검색해보면 다양하다.
파일 하나로 이루어져 있어서 USB에 넣고 강의 메모등을 하기에 편해 보였다.
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
Thingsboard Docker 설치 - IOT 플래폼 (0) | 2023.03.30 |
---|---|
Visual Studio Code Server (0) | 2023.03.29 |
IMMICH - Google Photo 대체 프로젝트 (0) | 2023.03.29 |
모니터링 솔루션 checkmk (0) | 2023.03.29 |
아파치 과콰몰리 Ubuntu SSH 접근오류 (0) | 2023.03.29 |