Welcome to WP Beaches

WordPress Websites design specialists, based in the Northern Beaches, Sydney Design, Develop, Host

Our Work

Recent Posts

Turn off SSH passwords in Ubuntu, connect via SSH keys only

Ssh Keys

Once you have a successful connection to your remote instance with SSH keys, it is better practice to disable SSH Password Authentication to mitigate further bruteforce password attempts, this coupled with a service like Fail2ban will further strengthen your Virtual…

Install and configure Fail2ban for CloudPanel on Ubuntu 22.04

CloudPanel Fail2ban

CloudPanel out of the box comes with an application to deal with brute force attacks on SSH, NGINX and WordPress, only SSH has a configuration, the app is called Fail2ban.Fail2ban is an app which bans access to your site from IP…

Add Monit to monitor MariaDB or MySQL database on a CloudPanel instance on Ubuntu 22.04

Cloudpanel Monit Mariadb

Get up and running with Monit on Ubuntu 22.04 on CloudPanel. Monit can be used to monitor your MariaDB or MySQL database and restart it if it is stopped – the database may be stopped due to a lack of…

Set up malware scanner LMD Maldet and ClamAV on a CloudPanel instance

Cloudpanel Malware Maldetect

How to set up a Maldet malware scanner with LMD Maldet and ClamAV on a CloudPanel server instance.One of the popular and open source malware scanners is an app called Linux Malware Detect and works well scanning any Linux web…

Adding 7G WAF Firewall for NGINX to CloudPanel

Cloudpanel 7g Waf Firewall

The 7G WAF firewall by Jeff Starr at Perishable Press is a great addition for server level WAF protection, here is a guide on how to add it to CloudPanel’s NGINX stack.Download the 7G WAF NGNIX versionDownload the 7G WAF…

Disable default WordPress emails on WordPress, themes and plugin updates

Disable Wordpress Default Update Emails

The PHP constants below will disable the default WordPress emails on WordPress, themes and plugin updates. They should be added into your wp-config.php file.// Disable WordPress core update emails add_filter( ‘auto_core_update_send_email’, ‘__return_false’ ); // Disable WordPress plugin update emails add_filter(…

Add a Swap Partition to a Ubuntu 22.04 instance

Ubuntu 22 Swap Partition

Below is a guide on how you can add a swap disk/partition to a Ubuntu 22.04 instance, I would recommend that you have a decent amount of hard disk space available to avoid constant use of the swap drive, a…

MySQL/MariaDB [Warning] Could not increase number of max_open_files to more than 32768 (request: 100000)

Mariadb Tuning

Seeing the warning recently on a number of VMs running MySQL/MariaDB.[Warning] Could not increase number of max_open_files to more than 32768 (request: 100000)A MariaDB process has requested a larger amount of open files, you can verify the current limit by…

Using MySQL Tuner with MariaDB on Ubuntu 22.04

Mariadb Tuning

Leaving MariaDB settings out of the box may work for some people but not so productive for others, MariaDB can be a resource hog if not checked and result in issues like OOM-Killer(Out of memory) knocking it off.You can use…