PDF download Download Article PDF download Download Article

To check error logs for a Linux server in PuTTY, you'll need to know the name and location of the log file (usually /var/logs). Use the "cd" command to enter the directory, then use the "tail" or "more" command to see what's in the log. This wikiHow will teach you how to check error logs in PuTTY.

Quick Steps

  1. Log in to a server with PuTTY.
  2. Use the cd command (e.g., cd /var/logs ) to enter the directory containing the error log.
  3. Type "tail -n 10 <log name>" to view the last 10 lines of the log.
  4. Alternatively, type "more <log name>" to open the entire log file.
  1. Double-click the PuTTY icon on your Desktop to open it or search your Start menu.
  2. Enter your hostname (or IP address), port number, and password to connect to your server with PuTTY.
    Advertisement
  3. In most instances, you can use " cd ~/logs " or " /var/www/vhosts/example.com/statistics/logs/ ".
  4. The command varies between servers and operating systems, but the default is similar to: " tail -n 10 error.log ".
    • If you get an error message or don't receive an answer, your error logs might be in a different location. Check with your server's information to find the file path your logs are stored.
    • Some commands will require root access and should start with " sudo " to work.
  5. Advertisement


Tips

Submit a Tip
All tip submissions are carefully reviewed before being published
Thanks for submitting a tip for review!

Common Questions

How do I view logs in Linux?

The most common location for logs is /var/logs. Type cd /var/logs to enter the directory, then type ls -a to see which logs are in the directory. To view a log, type more <log file name> , then use the spacebar to page through each screen.

How do I check files in PuTTY?

To see which files are in a directory, type ls -a . Or, use ls -al to see all files and subdirectories, as well as their permissions. To view the contents of a text file, type cat <filename> , or use more <filename> to browse the file screen by screen.

How do I search logs in Linux terminal?

Use the "grep" command to search for text in any file, including log files. For example, grep -l "error" *.* will search for the word "error" in all files within the current directory. You can also use cat <logfilename> to find text within a specific log file.

About This Article

Article Summary X

1. Open PuTTY.
2. Connect to your server.
3. Navigate the PuTTY window to your logs.
4. Enter the command to see your error logs.

Did this summary help you?
Thanks to all authors for creating a page that has been read 50,485 times.

Is this article up to date?

Advertisement