How to Update WordPress via SSH Terminal
Updating WordPress via SSH Terminal lets you manage your site files using text commands instead of the browser dashboard. WP-CLI is the official command-line tool for WordPress that makes this possible by running fast updates through a secure shell connection.
This method saves time when automatic updates fail or when you need to install a specific release like WordPress 6.5. Typing a short command such as `wp core update` finishes the job in seconds while giving you direct control over your server.
Update WordPress using SSH by executing WP-CLI commands. Back up your database and content first. Then, use `wp core update` to update WordPress core and `wp plugin update –all` for plugins.
How to backup WordPress database
Backing up your WordPress database before you update WordPress SSH protects your posts, comments, and settings if something goes wrong during the update. You can create a complete database backup by opening your terminal and running the mysqldump command, which exports all your site data into a single SQL file for safe storage.
sudo mysqldump -u root -p wp_database > wp_database.sql
Replace wp_database with the actual name of the WordPress database you want to back up. If you have a plugin that can back up WordPress content, use that before proceeding.
How to backup WordPress content
Backing up your WordPress content before you update WordPress SSH saves your themes, plugins, and uploaded images in case the update breaks your site. You can copy all your website files to a secure backup folder on your server by running the rsync command in your terminal.
Run the commands below to perform this backup.
sudo rsync -Waq /var/www/wordpress /path/to/backup/directory/
After backing up your WordPress database and content, you're ready to start the upgrade. The next step is to delete the existing wp-admin and wp-includes folders.
Delete WordPress wp-includes and wp-admin folders.
Next, delete the existing wp-admin and wp-include directories.
sudo rm -rf /var/www/wordpress/wp-includes sudo rm -rf /var/www/wordpress/wp-admin
Once the existing wp-admin and wp-includes folders are deleted, the next step is to download the updated WordPress content.
How to Download WordPress content
To download the latest WordPress content, run the commands below. After downloading, use the following command to extract the files.
cd /tmp/ && wget https://wordpress.org/latest.zip
Finally, unzip the archive.
unzip latest.zip
Replace WordPress content with the latest
Replacing your old WordPress files with the newest version is the core step when you update WordPress SSH. You can swap out the outdated files on your server by running a terminal command that moves the fresh WordPress installation files directly into your website's public folder.
sudo mv /tmp/wordpress/* /var/www/wordpress
After copying the files, open your browser and navigate to your WordPress site's URL to initiate the upgrade.
http://www.example.com/wp-admin/upgrade.php
Replace www.example.com in the URL with your domain name.
After a brief moment, your WordPress site should be updated with the latest files. You can then log in to see the changes.
That covers the manual update process. Drop a comment below if you run into any snags or spot something needing an update.
Conclusion:
Please use the comment form below if you find any errors or have something to add.
No comments yet — be the first to share your thoughts!