• 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 Database - Related to "domain" (API)

Haugli92

New Pleskian
Server operating system version
Ubuntu 22.04.5 LTS
Plesk version and microupdate number
18.0.66 Update #2
Hi,

Is it not possible to set "Related to" on a database through any of the APIs?

I've been debugging and reading through the documentation but haven't found anything about this.

1736583598689.png
 
What happened to this functionality? Is it implemented yet?

uservoice is not active anymore. Where are these kind of feature requests managed now? cannot find it on features.plesk.com
 
Hi, @tertek . The feature request in question had only 7 votes and was not prioritized for further evaluation after the migration off UserVoice due to low demand. Please feel free to submit a new request on features.plesk.com. I will re-propose it to our team.
 
Hi @Sebahat.hadzhi thank you for your response. Allright, I may submit the request.

Do you know by any chance, where in the database I can find the "related database" for a site?
I could not find it...
 
Could you please try the following query and let me know if it works for you:

Code:
SELECT
    db.id,
    db.name AS database_name,
    db.type,
    db.dom_id,
    d.name AS domain
FROM data_bases AS db
LEFT JOIN domains AS d
    ON db.dom_id = d.id;
 
This does not work: all dom_id == 1, hence it shows only the parent domain id. I need to know which subdomain id is assigned to which database.
 

Attachments

  • Screenshot from 2026-07-29 13-08-24.png
    Screenshot from 2026-07-29 13-08-24.png
    9.7 KB · Views: 4
Thank you for the confirmation. Unfortunately, I don't think that's possible through the Plesk database, because databases are attached to the parent hosting object.
 
Back
Top