Mounting Amazon S3 Cloud Storage in Windows: Open Windows PowerShell as Administrator. Create the directory to download and store rclone files: mkdir c:\rclone Go to the created directory: cd c:\rclone Download rclone by using the direct link mentioned above: Invoke-WebRequest -Uri “https://downloads.rclone.org/v1.51.0/rclone-v1.51.0-windows-amd64.zip” -OutFile “c:\rclone\rclone.zip” Extract files from the downloaded archive: Expand-Archive -path ‘c:\rclone\rclone.zip’ -destinationpath… Continue Reading How to Mount Amazon S3 bucket as a Drive 

Fail2ban is an intrusion detection system that scans the log files to find malicious attacks on your servers. Fail2ban updates firewall rules on its own to block the IP addresses which are trying to exploit the server. Prerequisite A system running Ubuntu 18.04 with a user account with sudo privileges… Continue Reading How to Install and Configure Fail2ban on Ubuntu 18.04 Server

There are two ways of getting Sphinx for Ubuntu: regular deb packages and the Launchpad PPA repository. Deb packages Sphinx requires a few libraries to be installed on Debian/Ubuntu. Use apt-get to download and install these dependencies:$ sudo apt-get install mysql-client unixodbc libpq5 Now you can install Sphinx:$ sudo dpkg… Continue Reading How to install Sphinx packages on Debian and Ubuntu

Step1: Login to the AWS accountStep2: Navigate to the S3 bucket and go to permissions Step3: Click on edit bucket policy and add the below policy: {“Version”: “2008-10-17”,“Id”: “S3PolicyId1”,“Statement”: [{“Sid”: “IPAllow”,“Effect”: “Deny”,“Principal”: {“AWS”: “” }, “Action”: “s3:“,“Resource”: “arn:aws:s3:::bucket-name/*”,“Condition”: {“NotIpAddress”: {“aws:SourceIp”: [“ip1”,“ip2”]}}}]} Step 4: Click on save changes

Sometimes, a WordPress user, with one of the following capabilities, such as administrator, editor, author, contributor, or subscriber, forgets its login credentials, especially the password. WordPress passwords can be easily changed via the “Lost Password” WordPress login form. However, if the WordPress account has no way of accessing his email… Continue Reading How to reset the WordPress password in Mysql

To overcome the deprecation notice error while logging into PHPMyAdmin follow the below steps: Step 1: Log in to the server and check for the PHP version Step 2: Edit the file config.inc.php.It will be located in /etc/phpmyadmin/config.inc.php or in /usr/share/phpmyadmin/config.inc.php Step 3: Add below command to the config.inc.php file and save… Continue Reading “Deprecation Notice” error in PhpMyAdmin with ubuntu 20.04, php7.4

1. Finding files by ownership. Find a file owned by a specific group. $ find /home -group groupname Find a file owned by a specific user: $ find /home -user username 2. Finding files by permission. Find files of a specific set of permissions, 777 in this example: $ find… Continue Reading How to find files based on permissions and ownership?

Zabbix is a monitoring solution for IT infrastructure. We can monitor most of the devices in the network and most of the services on the servers. To monitor applications, we must have a Zabbix server installed in the network. Zabbix Agent is required on the systems, we need to monitor… Continue Reading How To Install Zabbix Agent on Ubuntu 

Follow the below steps to create VPC in AWS Step1: Login to the AWS consoleStep2: Navigate to the VPC board Step3: On the VPC Dashboard, choose Launch VPC Wizard. Step 4: Choose VPC only and give Name tag, private IPv4 address and then click on create. Now VPC will be created.To check… Continue Reading How to create VPC in AWS

We want to reset an admin’s password on an Ubuntu system. Step1: When Booting up the machine, we hold down the left Shift or Esc key. Step2: Select Recovery Mode. Use the arrow keys to scroll to the first boot option from the top that contains (recovery mode). Hit Enter. Step3: Select root. Use the arrow keys to… Continue Reading How to Reset Password on Ubuntu Linux