IT 발자취.../리눅스
-
인증키 생성 (smallstep)IT 발자취.../리눅스 2022. 9. 8. 08:29
현재 문서는 "서비스메시마스터" - 안잔리카트리,비크람 카트리 지음 서적의 11장 보안기능 내용 중 발췌한 부분입니다. istio 도메인이 중간에 보이는 것은 문서를 그대로 가져왔기 때문으로, 본인 환경에 맞게 설정하길 바랍니다. 단방향 TLS나 상호 TLS를 사용하려면 개인 키, 서버 인증서 및 루트 인증서가 필요하다. CA에서 가져오거나 자체적으로 생성할 수 있다. 몇 단계의 커맨드 라인을 사용해 인증서와 키를 생성한다. 이를 위해 스텝 CLI를 설치해야 한다. 스텝 CLI 설치 https://github.com/smallstep/cli GitHub - smallstep/cli: 🧰 A zero trust swiss army knife for working with X509, OAuth, JWT, O..
-
kubernetes 관리용 CLI 설치 리스트IT 발자취.../리눅스 2022. 9. 6. 10:15
Install List * kubectl * istioctl * docker * Helm * Terraform kubectl 1.다음 명령으로 최신 릴리스를 다운로드한다. curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" 2.kubectl 설치 sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl istioctl 1. Go to the Istio release page to download the installation file for your OS, or download and extra..
-
[리눅스] PAM이란?IT 발자취.../리눅스 2021. 6. 23. 14:46
https://ko.wikipedia.org/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_PAM 리눅스 PAM - 위키백과, 우리 모두의 백과사전 리눅스 PAM 위키백과, 우리 모두의 백과사전. ko.wikipedia.org Linux Pluggable Authentiacation Modules (PAM). 리눅스 PAM은 리눅스 또는 GNU/kFreeBSD 시스템에서 애플리케이션과 서비스에 대한 동적 인증을 제공한다. 플러그인형 인증 모듈은 인증 및 보안을 위한 공통 프레임워크이다. PAM을 이해하고 사용하면 안전하고 효율적인 싱글사인온 솔루션을 계획하고 구현하는데 매우 유용할 수 있다. PAM 정보 - 사용자에게 시스템에 대한 액세스 권한을 부여하는 프로그램은 인증을 사용하여 서로의 I..
-
[명령어] apt remove vs purge 차이IT 발자취.../리눅스 2018. 12. 13. 11:41
운영체제 : Ubuntu 18.04 DESCRIPTIONapt-get is the command-line tool for handling packages, and may be considered the user's "back-end" to other tools using the APT library. Several "front-end" interfaces exist, such as aptitude(8), synaptic(8) and wajig(1).Unless the -h, or --help option is given, one of the commands below must be present. removeremove is identical to install except that packages ar..