주 메뉴 열기

wwiki β

바뀜

SSH

325 바이트 추가됨, 2024년 2월 28일 (수)
ssh config
==== 윈도우 ====
MS문서: [https://docs.microsoft.com/ko-kr/windows-server/administration/openssh/openssh_install_firstuse OpenSSH 설치]
위의 링크에 있지만, <code>C:\WINDOWS\System32\OpenSSH\ssh.exe</code>에 설치된다.(8.6.0.1) 참고로 gitbash에서는(git version 2.44.0.windows.1) <code>C:\Program Files\Git\usr\bin</code>에 설치되며 ssh config파일의 위치도 다른 것으로 보인다. [[PowerShell|파워셀]]을 관리자 권한으로 실행해서 실행해야 서비스를 제어할 수 있다.
<syntaxhighlight lang="powershell">
# Start the sshd service
# command-line options
# user's configuration file (~/.ssh/config)
# system-wide configuration file (/etc/ssh/ssh_config, 윈도우 OpenSSH_for_Windows_8.6p1, LibreSSL 3.4.3 경우에 C:/ProgramData/ssh/ssh_config)
<syntaxhighlight lang="text">
Host github.com
편집
2,431