Category: Featured

  • Finding and auto updating wordpress / themes / plugins with wp-cli

    For many years I have maintained a shell script that checks and can update wordpress. Its great, it needs nearly nothing and is handy for basic diagnosis, however its not good as something that can update things on a cron so well which multiple people have asked about.

  • Restoring an Exploited WordPress files

    I previously had a 10 step process to replace all the files in a wordpress, this got rid of most file based exploits. Since then i have written a shell script that pretty much incorperates that wget http://blog.rimuhosting.com/files/restorewordpress.sh chmod +x restorewordpress.sh ./restorewordpress.sh /full/path/to/documentroot Note: This does not do custom themes or plugins (only ones from…

  • WordPress Upgrade shell Script – plugins, themes, crontab and more!

    2019: This script is still being maintained It’s been some time since i upgraded my wordpress upgrade script. Several reasons why, partially because i had patches from other people to merge in, partially laziness on my part (being busy with other things). However, the good news is, it is here, and its amazing and awesome…

  • WordPress install script

    We like wordpress, a lot of our customers love it too. WordPress is web software you can use to create a beautiful website or blog, it is normally called a CMS too. We have created a script for automating the install of the last version of wordpress, even though installing wordpress is quite a trivial…

  • Setting up Domains Keys (DKIM) on Postfix

    This is a quick and fairly painless way of setting up DKIM, on a postfix server. DomainKeys Identified Mail (DKIM) is a method for associating a domain name to an email message, thereby allowing a person, role, or organization to claim some responsibility for the message and helps verify that your mail is legitimate. This…

  • Mysql Master/Master Replication & File sync for quick easy scaling or load balance

    A lot of our customers often need a quick easy way to scale up without moving to a new host or changing IP, or even just want an overseas copy of their site, so this is a brief tutorial on how to duplicate your server, and have the database and files replicate between the 2…

  • Fixing broken permissions or ownership

    People are not perfect, not even the staff here. Perfection is not required to be a sysadmin we found, just some good shell scripts to fix things when you break them accidentally. One of the more common accidents are chown or chmod ones, especially the ones done as root from / . Its easy to…

  • HOWTO videos for Rimuhosting Control Panel on youtube

    Sometimes explaining how to do something in the control panel can be fairly involved, and often confusing for people new to VPS or Rimuhosting. We have a fairly involved control panel that can do a lot of tasks, and it saves you a lot of time if you can do these things yourself in your…

  • Easy Peasy Linux Firewalling – iptables

    A lot of our customers have asked for firewalls, and since this is a common theme, i decided that I would help them out. Of course it can be a mission to learn how to make your own and what to do or not do, and some of the pre-made ones can be confusing. So…

  • Quick and Easy Automatic Backup Script

    At Rimuhosting we do a weekly snapshot backup of your VPS. This means that if anything goes wrong you can revert to the previous image. However since its weekly, not daily, you may find you have lost the data between those dates. This is a backup script that will backup your database and required files…