SMALL

Study 441

리눅스에 Open VPN 설치방법

https://www.opensourcelisting.com/how-to-install-openvpn-on-ubuntu-22-04/ How to Install OpenVPN on Ubuntu 22.04 - Open Source Listing Install OpenVPN: Set up your own OpenVPN Server - Securely connect to your network from anywhere with Open Source software. Learn how to install and configure in our guide. www.opensourcelisting.com Ubuntu 22.04에 OpenVPN을 설치하는 방법 가상 사설망(VPN)을 사용하여 공용 네트워크를 통해 개인 ..

Study/Linux 2024.01.14

Docker & Kubernetes Install for linux

* Docker Install https://docs.docker.com/engine/install/ Install Docker Engine Learn how to choose the best method for you to install Docker Engine. This client-server application is available on Linux, Mac, Windows, and as a static binary. docs.docker.com * 쿠버네티스 마이그레이션 관련 링크 https://kubernetes.io/blog/2023/08/31/legacy-package-repository-deprecation/ https://kubernetes.io/blog/2023/08/15/pkgs-..

Linux 우분투에서 Onedrive 동기화 하기

https://github.com/abraunegg/onedrive GitHub - abraunegg/onedrive: #1 Free OneDrive Client for Linux #1 Free OneDrive Client for Linux. Contribute to abraunegg/onedrive development by creating an account on GitHub. github.com 위 주소를 참조한다. 설명은 위에서 보는 것을 추천하고 아래의 명령어들은 빠르게 설치하기 위해서 기록한다. curl -fsS https://dlang.org/install.sh | bash -s dmd Example for installing DMD Compiler curl -fsS https://dlang..

Study/Linux 2023.07.16

[SSH] 서버에 SSH 생성 후 등록 및 접속하기

참고 : https://velog.io/@solar/SSH-%EC%9D%B8%EC%A6%9D%ED%82%A4-%EC%83%9D%EC%84%B1-%EB%B0%8F-%EC%84%9C%EB%B2%84%EC%97%90-%EB%93%B1%EB%A1%9D-%EA%B0%84%ED%8E%B8%ED%95%98%EA%B2%8C-%EC%A0%91%EC%86%8D%ED%95%98%EA%B8%B0 SSH 인증키 생성 및 서버에 등록 & 간편하게 접속하기 로컬에서 ssh key를 생성하고, 생성된 ssh key를 서버에 등록하면 해당 서버에 접속하려는 계정의 비밀번호 입력없이 ssh 접속이 가능하다.클라이언트는 비밀키를 가지고 있고, 서버에 공개키를 가 velog.io SSH 인증키 생성 및 서버에 등록 로컬에서 ssh key를..

Study/SSH 2023.06.10

ssh key 등록 에러날 때 It is required that your private key files are NOT accessible by others.This private key will be ignored.

이 오류 메시지는 개인 SSH 키 파일의 권한이 너무 널널하게 설정되어 있을 때 발생합니다. SSH 클라이언트는 다른 사용자가 읽을 수 없도록 개인 키 파일에 엄격한 권한을 요구합니다. 이 문제를 해결하려면 개인 키 파일의 권한을 더 제한적으로 업데이트해야 합니다. 개인 키 파일의 권장 권한은 0600으로 설정하는 것이 좋습니다(소유자만 읽기 및 쓰기 가능). 개인 키 파일의 권한을 업데이트하려면 chmod 명령을 사용할 수 있습니다: chmod 600 path/to/id_rsa 이 명령은 개인 키 파일의 권한을 소유자(즉, 본인)만 읽거나 쓸 수 있도록 변경합니다. 권한을 업데이트한 후에는 이 오류 없이 SSH 인증에 개인 키를 사용할 수 있어야 합니다.

Study/Git 2023.03.04

How to set up multiple NodeJS servers on Lightsail with a custom domain and Nginx

If you're running multiple NodeJS servers on Amazon Lightsail and want to configure them to work with a custom domain and Nginx, here's a step-by-step guide to help you get started. Prerequisites Before you get started, make sure you have the following: Two NodeJS servers running on Lightsail, one on port 2511 and the other on port 9010. A Lightsail instance with a static IP address. Access to t..

Study/Nginx 2023.02.19
반응형