Posted On April 12, 2019

Troubleshooting or Software Debugging Steps

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Troubleshooting or Software Debugging Steps

1. Validate the problem
2. Find to root cause by tailing logs or stack tracing
3. Reproduce the bug. This is known as Test Case in QA discipline
4. Memorize error codes such as:

403 - Forbidden or no access to files on this path
404 - URL is wrong
401 - Credentials are wrong
429 - Server is timing out due to being too busy
500 - Internal Server Error related to permissions
501 - Server doesn't understand your web client
502 - Bad gateway, check the proxy
503 - Service unavailable, check the worker processes

5. Google error codes
6. Get a second set of eyes. Often, when explain an issue to a colleague the organization of thoughts can create clarity within itself. Besides, nobody knows everything.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Function to Import PortQry (a Systernal Utility)

Update: much adieu about nothing. Run this quick script and ignore the prior jibberish: if…

PowerShell: Command Line to Empty a Remote Directory

PowerShell Method $remoteUncPath="\\FILESHERVER01\FOLDER01"$emptyDirectory="C:\emptyDirectory"md -Force $emptyDirectoryRemove-Item "$emptyDirectory`\*" -force -recurse -ErrorAction Continuerobocopy $emptyDirectory $remoteUncPath /mir /R:0 /W:0…

PowerShell: Get Spectre Meltdown Patching Versions of Hyper-V Hosts

function getHyperVHostsInForest{ function includeRSAT{ $ErrorActionPreference='stop' [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 #$rsatWindows7x32='https://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x86-RefreshPkg.msu' $rsatWindows7x64='https://download.microsoft.com/download/4/F/7/4F71806A-1C56-4EF2-9B4F-9870C4CFD2EE/Windows6.1-KB958830-x64-RefreshPkg.msu' $rsatWindows81='https://download.microsoft.com/download/1/8/E/18EA4843-C596-4542-9236-DE46F780806E/Windows8.1-KB2693643-x64.msu' $rsat1709 = "https://download.microsoft.com/download/1/D/8/1D8B5022-5477-4B9A-8104-6A71FF9D98AB/WindowsTH-RSAT_WS_1709-x64.msu" $rsat1803…