Windows : How to list and export installed software with PowerShell CLI

Use the following PowerShell command (run as admin) to list and export all installed software on Windows and export to a text file : Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize > C:\InstalledSoftware.txt This will save the output to C:\InstalledSoftware.txt

Linux : Move from FleetSSL to AutoSSL on cPanel

In the early ages of free automated SSL certificates, FleetSSL cPanel Plugin (earlier known as Let’s Encrypt for cPanel) was the standard. cPanel then announced in 2016 that the official plugin was now AutoSSL, which is provided by cPanel. The move from FleetSSL to AutoSSL is quite simple : 1. Uninstall FleetSSL Let’s Encrypt :… Read More »

Linux : How to reset the LiteSpeed WebUI Admin interface password

LiteSpeed Web Administration interface password can be reset easily with this single command as root : /usr/local/lsws/admin/misc/admpass.sh You will be asked for the user to reset the password (by default “admin”) and then to supply the new password of your choosing twice.

Linux : How to restrict access to LiteSpeed Web Server WebUI

LiteSpeed Web server come with a WebUI admin interface that is by default, accessible from port 7080 from any addresses (IP). For security reasons, it should be restricted to the IP address(es) or subnet(s) you usually manage your servers from and also to prevent the now very popular brute-force login attempts, which will flood you… Read More »

VMware : How to increase disk space on VCSA appliance

The VMware vCenter Server Appliance (VCSA) propose several disk sizing at the time of deployment. Eventually, disk shortage may occur, especially for the /var/log disk. This example assume you want to increase the default 10 Gb /var/log volume located on the virtual Hard Disk 5. 1. From the vCenter oe ESXi WebUI, edit the VCSA… Read More »

Linux : Morpheus Error executing action `create` on resource

Morpheus Cloud Management Platform 5.1.1 error out as followed when installing the Debian package : * file[/etc/sudoers.d/80-morpheus-app] action create * Parent directory /etc/sudoers.d does not exist. ================================================================================ Error executing action `create` on resource ‘file[/etc/sudoers.d/80-morpheus-app]’ ================================================================================ Chef::Exceptions::EnclosingDirectoryDoesNotExist ———————————————— Parent directory /etc/sudoers.d does not exist. As obviously stated in the message, the folder “/etc/sudoers.d” does not exist,… Read More »

Web : ownCloud 10.8.0 to 10.9.0 upgrade Repair warning: No marketplace connection: Forbidden

Upgrade from ownCloud 10.8.0 to 10.9.0 return the following error : Repair warning: No marketplace connection: Client error response [url] https://marketplace.owncloud.com/api/v1/platform/10.9.0/apps.json [status code] 403 [reason phrase] Forbidden This is a known behavior caused by missing ownCloud Marketplace API key. If no other error has been displayed following your upgrade process, simply do the following steps… Read More »