From 8bfa54b756417df94ac5d36dff925611ed3639a8 Mon Sep 17 00:00:00 2001 From: Manoj Ampalam Date: Fri, 30 Mar 2018 14:52:48 -0700 Subject: [PATCH] Updated Troubleshooting Steps (markdown) --- Troubleshooting-Steps.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Troubleshooting-Steps.md b/Troubleshooting-Steps.md index 4727039..6b4ac96 100644 --- a/Troubleshooting-Steps.md +++ b/Troubleshooting-Steps.md @@ -1,3 +1,5 @@ +See [Logging Facilities](https://github.com/PowerShell/Win32-OpenSSH/wiki/Logging-Facilities) to modify logging location. + Troubleshooting steps for typical service startup and connection issues: * Server side: run `sshd` in debug mode @@ -20,7 +22,9 @@ Troubleshooting more complex issues: * Stop `sshd` * `Stop-Service sshd` * Delete `sshd.log` and `ssh-agent.log` (under %programdata%\ssh\logs) - * Set `LogLevel` to `DEBUG` (or `DEBUG2`/`DEBUG3` for higher levels of logging) in `sshd_config` + * Set the following in `sshd_config` + * `LogFacility LOCAL0` + * `LogLevel` to `DEBUG` (or `DEBUG2`/`DEBUG3` for higher levels of logging) * Rerun the workflow that's giving you problems. `logs\sshd.log` will contain `sshd` related traces. * If the problem isn't clear, please post these logs along with some steps to help us reproduce your problem in [our GitHub Issues](https://github.com/powershell/Win32-OpenSSH/issues). * Client side