Skip to main content

Posts

Showing posts from 2024

Fix - This storage pool does not have sufficient eligible resources for the creation of this specified virtual disk

When encountering an error while creating a Virtual Disk after establishing a Storage Pool in the Server Manager, this is the appropriate location for assistance. Here are the specifics of the error message: Error Details : Failed to create virtual Disk – Not Supported Extended information This storage pool does not have sufficient eligible resources for the creation of this specified virtual disk. Recommended Actions: - Choose a combination of FaultDomainAwareness and NumberOfDataCopies (or PhysicalDiskRedundancy) supported by this storage pool. - Choose a value of NumberOfColumns that is less than or equal to the number of physical disks in the storage fault domain selected for the virtual disk. To Fix : Avoid using ServerManager GUI to perform this, instead use Powershell to run the query. New-VirtualDisk -StoragePoolFriendlyName <StoragepoolName> -FriendlyName TestVD -ResiliencySettingName Parity -Size <Size> -ProvisioningType Fixed -MediaType SSD -PhysicalDiskRedundanc

Plesk : How to create banner notification in plesk

 Today we will learn how to post banner notification in Plesk -Windows. This is useful when you want to display a specific content like new features or downtime message in the homepage of customer panel. We will be using the plesk extension - Broadcast message to achieve this task. To install the extension : C:\> plesk bin extension --install broadcast-message Turn on the extension : C:\> plesk db "update ModuleSettings set value = 1 where name = 'enable' and module_id in (select id from Modules where name = 'broadcast-message')" Turn off the extension : C:\> plesk db "update ModuleSettings set value = 0 where name = 'enable' and module_id in (select id from Modules where name = 'broadcast-message')" Edit the notification text: C:\> plesk db "update ModuleSettings set value = '<new message>' where name = 'message' and module_id in (select id from Modules where name = 'broadcast-message')