• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Issue Plesk Obsidian - Version 18.0.50 - Database Servers Missing

emailco

New Pleskian
Server operating system version
AlmaLinux 9.1 x86_64
Plesk version and microupdate number
Plesk Obsidian 18.0.50.0
Hi, after upgrading plesk to 18.0.50, it looks like the database support isn't working anymore or there is a gui problem.

Product version: Plesk Obsidian 18.0.50.0
OS version: AlmaLinux 9.1 x86_64
Database version: 10.5.16-2.e19_0

Code:
plesk repair mysql
Checking MySQL database servers ..................................... [OK]
Repair databases on available servers ............................... [OK]
Repair database users on available servers .......................... [OK]
Error messages: 0; Warnings: 0; Errors resolved: 0

Admin Area
Tools & Settings -> Database Server = Looks like there's nothing here!


plesk_screen_1.png

Customer Area
"Here you can create new or manage existing databases" but there are no buttons.

plesk_screen_2.png
 
Perhaps also needed as info...

System packages:
mariadb 3:10.5.16-2.el9_0
mariadb-common 3:10.5.16-2.el9_0
mariadb-connector-c 3.2.6-1.el9_0
mariadb-connector-c-config 3.2.6-1.el9_0
mariadb-errmsg 3:10.5.16-2.el9_0
mariadb-server 3:10.5.16-2.el9_0
plesk-libmariadbclient-3.1 3.1.8-0redhat.9.220912.1011
 
Had the same issue after a broken install, turns the PSA database was broken, the repair does not cares about that so here is a quick fix what I hope going to work.

plesk db
SQL:
USE psa;
SELECT * FROM `DatabaseServers`;

Empty set (0.000 sec)
If shows an empty result you have to create the entries for the available databases, of course you should modify this according to your needs:

SQL:
INSERT INTO `DatabaseServers` (`id`, `host`, `port`, `type`, `server_version`, `admin_login`, `admin_password`, `parameters_id`, `last_error`, `fork`) VALUES
(1, 'localhost', 3306, 'mysql', '10.5.18', 'admin', '******', NULL, 'no_error', 'mariadb'),
(2, 'localhost', 5432, 'postgresql', NULL, '', '', NULL, 'credentials_not_set', NULL);
 
Hey thanks for the response, I can't emphasize enough what a great product Plesk is and thank you for all the hard work you guys are putting into it.

Are we sure that this method checks these tables?
Here is what was tried:

plesk repair installation
plesk repair all -y
./bootstrapper.sh repair
In that case it would probably be
# plesk repair installation

Believe me I spent a few hours figuring out what went wrong. In this case nothing shows up in the logs, what is understandable.
Installing postgresql as secondary db didn't do the trick.
Due to IPv6 enabled on Debian 11 the installer runs with some heavy delays (we had 5-20sec dns response times) which is unlikely to be the fault of the installer. By a complete dumb move the first installer was ctrl+x-ed and for whatever reason it was still running in the background, a second installer was started what hang at some point with the usual error what we get when the proper plesk installer finds and other installer process. It just didn't displayed anything so we had to check the logs and make the first one exit.

Most of the errors that this accident generated were fixed by the "plesk repair" (or we believe so :), but this problem with the missing database server remained.
 
Back
Top