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

Unix Question: Can you create a soft link to your httpdocs folder?

C

Clark

Guest
Just upgraded to a new server and I'm using Plesk for the first time. Trying to learn the ropes.

On my old machine, the path to my docment root was very short and simple. /home/mysitename/www

On the new one, with Plesk, the path is more like /home/httpd/vhosts/mywholedomainname/

So, if there is a way, I would like to create a soft link alias to point to this directory. It would be much easier to type and I think I might not need to edit a lot of lines in a lot of files if it can be done.

ln -s /home/httpd/vhosts/mywhoedomainname/httpdocs/ /home/mydomain/www/ does not seem to want to work.
 
Check the owners of the folders and the permissions on them. You prolly need to be root to make the softlinks too
 
Try it without the slashes at the end, i.e.:

ln -s /home/httpd/vhosts/mywhoedomainname/httpdocs /home/mydomain/www
 
This I was able to figure out.

I logged in as root in SSH and made sure I was in my root directory with cd /.

I then used ln -s /home/mysite /home/httpd/vhosts/mydomain.com/httpdocs

Now I have a shortened path that is very useful in navigating to from the shell and for using inside of files.
 
Back
Top