Change a WordPress password with SSH


You can make changes to your database through SSH, which you can use update your WordPress password.

Warning: The information in this article is advanced material we make available as a courtesy. Please be advised that you are responsible for properly following the procedures below. Customer Support can't assist with these topics.

  1. You should always backup your site before performing any changes.
  2. Connect to your package SSH
  3. Connect to MySQL using the following command:

    mysql -u username -h host database -P port -p

    Enter the database information from your database as follows:

  4. When prompted, enter the password for that MySQL user.
  5. Enter the following MySQL command to switch to your WordPress database:

    mysql> use database

  6. Enter the following command to see a list of the tables in the database. Make notes of the table containing "_users".

     

    mysql> show tables;

  7. Enter the following command to see the contents of your "users" table. Make note of the number in the "ID" column for the user you want to update.

    mysql> SELECT * FROM table;

  8. Use the following command to set your new password.

    mysql> UPDATE table SET user_pass = MD5('password') WHERE ID = id;

You can now login with your new password



Article ID: 1248
Created On: Tue, Nov 17, 2020 at 7:36 PM
Last Updated On: Wed, Nov 18, 2020 at 10:01 PM

Online URL: https://www.heartinternet.uk/support/article/change-a-wordpress-password-with-ssh.html