develog

[window10] OpenSSH Server 설치 본문

카테고리 없음

[window10] OpenSSH Server 설치

냐옴 2020. 8. 27. 15:55
  • 관리자 권한으로 PowerShell 실행

 

  • OpenSSH Server 설치여부 확인

Get-WindowsCapability -Online | ? Name -like 'OpenSSH*'

 

  • OpenSSH Serer 설치

Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0

 

  • ssh 서비스 시작

Start-Service sshd
Set-Service -Name sshd -StartupType 'Automatic'

 

https://docs.microsoft.com/ko-kr/windows-server/administration/openssh/openssh_install_firstuse

 

Windows Server용 OpenSSH 설치

Windows 설정 옵션 또는 Windows PowerShell을 사용하여 Windows Server용 OpenSSH 클라이언트 및 서버를 설치합니다.

docs.microsoft.com

 

Comments