Error
Error while installing hpe-vme using teh command: dpkg -i hpe-vm-essentials_8.0.8~rc1-1_amd64.deb
(Reading database ... 74587 files and directories currently installed.)
Preparing to unpack hpe-vm-essentials_8.0.8~rc1-1_amd64.deb ...
Unable to install Morpheus Appliance!
Make sure that no ports are listening on any of the following ports: 3306, 8080, 80, 443,
dpkg: error processing archive hpe-vm-essentials_8.0.8~rc1-1_amd64.deb (--install):
new hpe-vm-essentials package pre-installation script subprocess returned error exit status 1
Errors were encountered while processing:
hpe-vm-essentials_8.0.8~rc1-1_amd64.deb
Solution:
Check any ports using the command:
### lsof -i :3306 -i :8080 -i :80 -i :443
if this output contains any container ,run below command:
###3systemctl list-units |grep docker
If this list anything: disable and stop those service using:
systemctl disable <service>
systemctl stop <service>
Now check any snap servcie running:
snap stop wekan
snap stop microk8s
check again the ports and make sure all clean.
If you see any more ports run below command to find details about any other process using this by:
###ps -fp $(sudo lsof -ti :8080)
Comments
Post a Comment