• 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.

Question What is the use of /home/system folder (clone?)

destan40

Basic Pleskian
The domain user data are stored at /home/domain.com
now i see the exactly same data are stored in /home/system/domain.com

I can not see a symlink?, so i also tried to delete /home/domain.com/logs/error_log
but then in system folder the file its not deleted,
and only delete from /home/system/domain.com free up storage.

How it works, what is the use?
 
These files are hardlinked... Both file names point to the same inode, so deleting just the one file name won't remove the content and free the disk space.

For the answer to your question, refer to the following Plesk support article: Why there are two locations for domain log files in Plesk?

To recreate the files, either refer to the How to recreate log files hardlink structure for all vhosts? support article or, for a single domain, use:
Code:
plesk sbin relink-vhost-logs --domain-name example.com --sys-user-login <user_name> --create

Also... generally speaking, when in doubt, research first, delete later... ;)
 
Back
Top