Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
The APS Catalog has been deprecated and removed from all Plesk Obsidian versions. Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.
I’ve been trying to install the site-import extension on a server running Ubuntu Jammy (22.04) with Plesk Obsidian, and I’m encountering persistent issues with GPG key verification. Despite following various troubleshooting steps, the installation fails due to a missing GPG key (BD11A6AA914BDF7E). Below is a detailed explanation of the issue and the steps I’ve tried.
Error Summary
Whenever I attempt to install the site-import extension, the installation fails during the post-install.php execution with the following errors:
W: GPG error: Index of /PMM_1.0.0 jammy InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY BD11A6AA914BDF7E
E: Failed to fetch https://autoinstall.plesk.com/PMM_1.0.0/dists/jammy/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY BD11A6AA914BDF7E
The post-install.php script appears to fail during the "Bootstrapping dependencies" step, unable to fetch the required repository packages due to this key issue.
What I've Tried
Here’s what I’ve done so far to try to resolve the problem:
Added the Plesk GPG Key
Downloaded the Plesk GPG key and added it using various methods:
wget -qO - https://autoinstall.plesk.com/plesk.gpg | gpg --dearmor -o /usr/share/keyrings/plesk.gpg
Ensured permissions are correct:
sudo chmod 644 /usr/share/keyrings/plesk.gpg Updated Repository Configuration
Modified /etc/apt/sources.list.d/plesk.list to use the signed-by attribute:
deb [signed-by=/usr/share/keyrings/plesk.gpg] Index of /PSA_18.0.67 jammy all
deb [signed-by=/usr/share/keyrings/plesk.gpg] Index of /PMM_1.0.0 jammy all
Attempted a Bypass with trusted=yes
As a workaround, I modified the repository to bypass signature verification:
deb [trusted=yes] Index of /PSA_18.0.67 jammy all
deb [trusted=yes] Index of /PMM_1.0.0 jammy all
Unfortunately, this did not resolve the issue either.
Manually Installed the Extension
Downloaded the extension ZIP file and tried installing it manually:
plesk bin extension --install ./site-import-1.8.13-2255.zip
This also fails with the same error during the execution of post-install.php.
Cleared and Refreshed Package Cache
Cleaned the apt cache and manually removed old keys:
sudo apt-get clean
sudo rm -rf /var/lib/apt/lists/*
sudo apt-key del BD11A6AA914BDF7E
Reviewed the post-install.php Script
Examined /opt/psa/admin/plib/modules/site-import/scripts/post-install.php but could not identify a clear way to skip or bypass the dependency step without breaking the extension.
I managed to resolve the persistent GPG key error when installing the site-import extension on Ubuntu Jammy (22.04). Here's the detailed fix, step by step:
Issue
The installation of the site-import extension was failing due to GPG key verification errors. APT was misusing the Plesk GPG key (BD11A6AA914BDF7E), causing repository signature verification issues.
Errors included:
Code:
W: GPG error: https://autoinstall.plesk.com/PMM_1.0.0 jammy InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY BD11A6AA914BDF7E
E: Failed to fetch https://autoinstall.plesk.com/PMM_1.0.0/dists/jammy/InRelease
Solution
Step 1: Remove the Misplaced Plesk Key
The Plesk GPG key was mistakenly placed in the global keyring directory (/etc/apt/trusted.gpg.d/), causing APT to attempt to use it for unrelated repositories. To fix this: sudo rm /etc/apt/trusted.gpg.d/plesk.gpg
Step 2: Place the Plesk Key in the Correct Directory
Store the Plesk GPG key in the dedicated /etc/apt/keyrings/ directory to ensure it's only used for the Plesk repository.
Create the keyrings directory: sudo mkdir -p /etc/apt/keyrings
Download and save the Plesk key: curl -fsSL https://autoinstall.plesk.com/plesk.gpg | sudo gpg --dearmor -o /etc/apt/keyrings/plesk.gpg
Step 3: Verify the Plesk Repository Configuration
Ensure the Plesk repository is properly configured to use its specific GPG key.
Open the Plesk repository file: sudo nano /etc/apt/sources.list.d/plesk.list
Update it to include: deb [signed-by=/etc/apt/keyrings/plesk.gpg] https://autoinstall.plesk.com/PSA_18.0.66 focal all
Save and exit.
Step 4: Update APT and Verify
Finally, refresh APT to ensure everything works correctly: sudo apt update
What to expect:
The warnings about the Plesk GPG key in /etc/apt/trusted.gpg.d/ will no longer appear.