How to enable and disable startup apps in Windows 10 Date: 12-06-2021 Step 1: Right-click the Start button and select Task Manager then select the Startup tab.Note: If you don’t see the Startup tab, select More details in Task Manager. Step 2: Select the app you want to Enable to run it at system startup or Disable it… Continue Reading How to enable and disable startup apps in Windows 10

Wildcard SSL allows you to secure an unlimited number of subdomains on a single certificate. It’s a great solution for anyone who hosts or manages multiple sites or pages that exist on the same domain. The one-time cost of the certificate covers you for additional subdomains you may add in… Continue Reading Installing wildcard SSL in windows which you are already using in Linux

If the mysqld server receives too many connection requests from the host that is interrupted in the middle, the following error occurs: The max_connect_errors system variable determines the number of successive interrupted connection requests that are allowed. Once there are max_connect_errors failed requests without a successful connection, mysqld assumes that something is… Continue Reading Host host_name is blocked

How to Install Remote Desktop (Xrdp) on Ubuntu 18.04 Date: 04-06-2021 Step 1: Login to your ubuntu server via ssh. Step 2: Install XRDP Packages by using below commands.# sudo apt-get update# apt-get install xrdp Step 3: Allow RDP port 3389 in your server firewall if firewall enabled. Step 4:… Continue Reading How to Install Remote Desktop (Xrdp) on Ubuntu 18.04

When you get the above error while accessing the Mongodb, you can simply resolve it by changing the role. You need to set the role to be root when adding the first admin user. use admindb.createUser({user: ‘admin’,pwd: ‘password’,roles: [ { role: ‘root’, db: ‘admin’ } ]}); If you have already… Continue Reading List collections failed: not authorized(Mongodb)

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