• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

taila updated

Frater

Regular Pleskian
Someone once posted an alias 'taila'

'taila' will give you a "following tail" of all the access_log and error_log websites on your Plesk server on the command line.

I thought it was handy, but just found out it didn't work that way in Plesk 11.
Here's a little rewrite which you can put in /root/.bash_aliases

It uses "/usr/local/psa/version" to obtain the Plesk version and if it's not running Plesk it will give you a "normal" Apache2 logtail....


Code:
PLESKVER=`awk -F. '{print $1}' /usr/local/psa/version 2>/dev/null | tr -cd '0-9'`
[ -z "${PLESKVER}" ] && PLESKVER=0

if [ ${PLESKVER} -eq 0 ] ; then
  alias taila='tail -f /var/log/apache2/access.log /var/log/apache2/*/access.log /var/log/apache2/error.log /var/log/apache2/*/error.log'
elif [ ${PLESKVER} -lt 11 ] ; then
  alias taila='tail -f /var/www/vhosts/*/statistics/logs/error_log /var/www/vhosts/*/statistics/logs/access_log'
else
  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'
fi
 
Last edited:
Thanks for sharing this information.
But may I kindly request you to give more info on how and why to use it and the expected results (For those users who would bump on it through search engines)
 
Back
Top