Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- tomcat
- netsh
- maVen
- xargs
- grep
- find
- JavaScript
- Mac
- lsof
- context
- resource
- port
- Source
- 네트워크
- IntelliJ
- vscode
- VirtualBox
- GIT
- Quartz
- import
- Windows 10
- ssh
- profile
- 줄바꿈 문자
- bash
- 단축키
- web.xml
- plugin
- Eclipse
- Windows
Archives
- Today
- Total
develog
[window10] OpenSSH Server 설치 본문
-
관리자 권한으로 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