How to set default node version with NVM Date: 29-05-2021 Step 1: Login to the server via ssh. Step 2: Install the required version by using below nvm command.# nvm install v12.19.1Note: 12.20.1 – This is version. Step 3: Set 12.19.1 (or another version) as default.# nvm alias default v12.19.1… Continue Reading How to set default node version with NVM

ERROR 1153 (08S01) at line 8606: Got a packet bigger than ‘max_allowed_packet’ bytes. Date: 22-05-2021 Introduction: When doing a very large MySQL import from a dump file you may get this error. You can follow the below steps to solve this error. Step 1: You can see the current configured… Continue Reading ERROR 1153 (08S01) at line 8606: Got a packet bigger than ‘max_allowed_packet’ bytes.

Please find the below steps for integrating sonarqube with Jenkins. Login into Jenkins and install SonarQube scanner pluginGo to Manage Jenkins –> Manage Plugins > Available –> SonarQube scanner And also add credentials plugins to store your credentials in Jenkins Configure SonarQube home path. a) Go to Manage Jenkins –>… Continue Reading Integration of SonarQube in Jenkins

Prerequisites Ubuntu 18.04/16.04 LTS with minimum 2GB RAM and 1 CPU. PostgreSQL Version 9.3 or higher SSH access with sudo privileges Firewall Port: 9000 MySQL Support for SonarQube is depricated.Increase the vm.max_map_count kernal ,file discriptor and ulimit for current session at runtime. 1) Please follow the below steps to increase… Continue Reading How to Install SonarQube on Ubuntu 18.04/16.04 LTS

How to solve the Bind dns service error in cPanel server Date: 08-05-2021 Step 1: Login to server via SSH. Step 2: You should update the kernel version in the server by using below command.# yum update kernel Step 3: You can run below command to switch Bind service. Press… Continue Reading How to solve the Bind dns service error in cPanel CentOS server

How to Install Kubernetes on CentOS 7 Date: 03-05-2021 Step 1: This package is not available in CentOS 7 repositories by default. You need to add Kubernetes repositories manually. Enter the below command to retrieve the Kubernetes repositories. Step 2: You will install kubelet, kubeadm, and kubectl packages on your system. You can use below… Continue Reading How to Install Kubernetes on CentOS 7

If you get the above error, please follow the below steps. Above error states that postgres is not running. Running pg_lsclusters will list all the postgres clusters running on your device. 2. Most probably the status will be down if we get the above error . Try restarting Postgres clusters and servicesystemctl… Continue Reading Is the server running locally and accepting connections on Unix domain socket “/var/run/postgresql/.s.PGSQL.5432”?

How to install particular version of Node JS and npm using NVM Date: 17-04-2021 Introduction NVM (Node Version Manager) is a bash script that allows you to manage multiple Node JS versions. You can easily switch to other versions. Step 1: You can install nvm by using below command.# curl… Continue Reading How to install particular version of Node JS and npm using NVM

“Whenever you use the WordPress control panel to automatically install, upgrade, or delete plugins, WordPress must make changes to files on the filesystem. Before making any changes, WordPress first checks to see whether or not it has access to directly manipulate the file system. If WordPress does not have the… Continue Reading WordPress asking for my FTP credentials to install plugins