• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Input Useful alias

mr-wolf

Silver Pleskian
Plesk Guru
Here's an alias I picked up long ago and implemented in /root/.bash_aliases.
I often use it in a casual way just to check if everything is running nicely.

I've seen it failing though a few times and only just now I found out why.
It didn't include the "access_ssl_log" of the websites.

Maybe it silly of me to find out so late...
Wanted to share it in case there are more silly men (and women) in the world. ;-)

old
Code:
alias taila='tail -f /var/www/vhosts/*/logs/access_log /var/www/vhosts/system/*/logs/access_log /var/www/vhosts/*/logs/error_log /var/www/vhosts/system/*/logs/error_log'

improved
Code:
alias taila='tail -f /var/www/vhosts/*/logs/access_*log /var/www/vhosts/system/*/logs/access_*log /var/www/vhosts/*/logs/error_log /var/www/vhosts/system/*/logs/error_log'

Another useful one:
Code:
alias taile='tail -f /var/www/vhosts/*/logs/error_log /var/www/vhosts/system/*/logs/error_log'
 
Back
Top