Home » Categories » Managed WordPress » Advanced

Change your WordPress password with WP-CLI

If you installed WP-CLI on your server to manage your WordPress site, then you can follow these steps to update your password. If you have not setup WP-CLI, then you will need to do so before using these steps.

  1. You should always backup your site before performing any changes.
  2. Connect to your server or shared hosting account with SSH
  3. Change to the root directory for your WordPress site.
  4. Use the following command to view a list of users for your WordPress site. Make note of the ID number for the user you want to update.
        $ wp user list
            
  5. Use the following command to update the password for that user.
        $ wp user update id --user_pass=password
            
    • id is the number you located in Step 4
    • password is your new password

You can now login with your new password

1 (2)
Article Rating (2 Votes)
Rate this article
  • Icon PDFExport to PDF
Related Articles
Update WordPress permalinks in the database
Added on Tue, Nov 17, 2020
Update WordPress database connection string
Added on Tue, Nov 17, 2020
Disable trackbacks and pingbacks in WordPress
Added on Tue, Nov 17, 2020
Remove WordPress comments in the database
Added on Tue, Nov 17, 2020
Disable external WordPress comment requests
Added on Tue, Nov 17, 2020