2017-07-17 1 views
-2

windows10 64bitでopensshを起動できませんでした。インストールが終了したら、以下の手順に従ってpasswdをセットアップしました:windows10 64bitでopensshを起動するには?

1. Open a command prompt and change to the installation directory (Program Files\OpenSSH is the default). 

2. CD into the bin directory. 

3. Use mkgroup to create a group permissions file. For local groups, use the "-l" switch. For domain groups, use the "-d" switch. 
    For both domain and local, it is best to run the command twice (remember to use >>, not >). If you use both, make sure to edit the file to remove any duplicate entires. 

     mkgroup -l >> ..\etc\group  (local groups) 

4. Use mkpasswd to add authorized users into the passwd file. For local users, use the "-l" switch. For domain users, use the "-d" switch. 
    For both domain and local, it is best to run the command twice (remember to use >>, not >). If you use both, make sure to edit the file to remove any duplicate entires. 

     mkpasswd -l >> ..\etc\passwd  (local users) 

私はwindows10のデフォルトのsshサービスを無効にしました。したがって、ポート22は使用可能です。その後、私はsshdサーバーを起動しようとしましたが失敗しました。 以下は私が得たエラーです。

C:\Program Files (x86)\OpenSSH>net start opensshd 
The OpenSSH Server service is starting. 
The OpenSSH Server service could not be started. 

A system error has occurred. 

System error 1067 has occurred. 

The process terminated unexpectedly. 

windows10 64bitでsshdを設定するにはどうすればよいですか?

答えて

0

私はopensshの非常に古いバージョンをインストールしたことが判明しました。 openssh 7.5にアップグレードすると正常に動作します。

関連する問題