Blog
Ubuntu find Dependencies for a package
To find dependencies for a package, run apt-cache depends PACKAGE_NAME Example root@ubuntu-s-4vcpu-8gb-nyc1-01:~# apt-cache depends php7.2 php7.2 |Depends: libapache2-mod-php7.2 |Depends: php7.2-fpm Depends: php7.2-cgi…
Repair Plesk Server
To repair the Plesk server, run repair all To fix file system permissions for a website See Plesk
Upgrade MariaDB 5.5 to 10.1 on CentOS 7 Plesk Server
EDIT 2022-05: Now Plesk has an easy MySQL upgrade script, to do the upgrade, run wget https://support.plesk.com/hc/en-us/article_attachments/4584125667858/c7-mariadb-10.5-upgrade.sh && chmod +x c7-mariadb-10.5-upgrade.sh ./c7-mariadb-10.5-upgrade.sh…
Open MySQL Port 3306 in CentOS 7
To allow MySQL to connect from remote server on CentOS 7 server, you need to enable port 3306 in firewall. To do…
vmware
Finding Information on VMware ESXi Host How to add ISO to VMware ESXi Create Virtual Machine in VMware ESXi Server VMware ESXi…
Finding Information on VMware ESXi Host
You can run esxcfg-info In VMware ESXi host SSH terminal. You can also see this information by going to URL https://SERVER_IP/cgi-bin/esxcfg-info.cgi This…
yum repolist
List all Repositories yum repolist List packages from a specific repo Following command disable all repos and enable EPEL repo. yum list…
Install python 3.6 on CentOS 7
CentOS 7 come with Python 2.7. To install python 3.6, first install the EPEL repo. yum install epel-repo -y Install IUS repo.…
Best WordPress Image Compression Plugins
Here are some plugins that can optimizse images. https://imagify.io/wordpress/ – Optimise all your images. https://wordpress.org/plugins/ewww-image-optimizer-cloud/ https://wordpress.org/plugins/wp-smushit/ See WordPress
Google Remote Desktop
Google Remove Desktop allow you to connect/share your share your computer with others. https://remotedesktop.google.com/ You need google chrome browser to install Google…
Find Plesk License key
To find Plesk serial number on Linux server, run grep key-number /etc/sw/keys/keys/key* | grep PLSK | awk -F “” ‘{print $3} You…