Common Firewall (UFW) command

$sudo ufw status$sudo ufw enable$sudo ufw disable How to allow any port. just write ufw allow and the port and same way you can disallow any port look at the example given below.$ufw allow 22$ufw diallow 22 $ss -anpstufw delete allow 3389

Read More

How to increase EC2 Instance root volume size

1st of all we need to format the partition the command of formatting the partition is$mkfs.ext4 /dev/xvdf then we have to mount the partition to another directory for example we mount the partition on /opt directori. so now we have to cmnd$mount /dev/xvdf /opt So now our new volume is mounted on the /opt directory. […]

Read More

How to Install Apache

Read More

How to connect s3 bucket to wordpress using wp offload media lite plugin

An Amazon S3 bucket is a public cloud storage resource available in (AWS). s3 a object storage offering. Amazon S3 buckets, which are similar to file folders, store media, which consists of data and its descriptive metadata. Let’s started Go to the AWS control panel and then the s3 bucket. create an s3 bucket same […]

Read More

How to install cyber panel using command line

Installing CyberPanelStep 1: Connect to your server via SSHThe installation of CyberPanel is quite simple. First, log into your server via SSH as the root user (sudo will not work). You can get the login details from your web host. Step 2: Update packagesFor Ubuntu: sudo apt update && sudo apt upgrade -yFor CentOS/Alma/Rocky: sudo […]

Read More