{"id":25182,"date":"2018-01-30T02:51:37","date_gmt":"2018-01-30T08:51:37","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=25182"},"modified":"2022-12-05T06:45:48","modified_gmt":"2022-12-05T12:45:48","slug":"how-to-reset-wordpress-admin-password-via-mysql-command-prompt","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/","title":{"rendered":"How to Reset WordPress Admin Password via MySQL Command Prompt"},"content":{"rendered":"
<\/div>

\"How<\/p>\n

Have you ever forgotten your WordPress administrator password and did not have access to your e-mail account or haven’t configured your e-mail account properly in WordPress? Fear not, because in today’s tutorial we are going to learn how to reset the WordPress administrator password through the MySQL command prompt.\u00a0Resetting WordPress Admin Password via MySQL Command Prompt, its fairly easy task, you will need to have the login credentials of your database and user, or have access to wp-config.php file. Let’s get started!<\/p>\n

Resetting the WordPress admin password through MySQL<\/h2>\n

Let’s begin by looking up the username and password you set for your WordPress database in your wp-config.php file first, do that by navigating to the directory WordPress is installed in and then open wp-config.php with nano:<\/p>\n

# nano wp-config.php<\/pre>\n

Find the following lines in your wp-config.php file:<\/p>\n

\/\/ ** MySQL settings - You can get this info from your web host ** \/\/\r\n\/** The name of the database for WordPress *\/\r\ndefine( 'DB_NAME', 'database_name_here' );\r\n\/** MySQL database username *\/\r\ndefine( 'DB_USER', 'username_here' );\r\n\/** MySQL database password *\/\r\ndefine( 'DB_PASSWORD', 'password_here' );\r\n\/** MySQL hostname *\/\r\ndefine( 'DB_HOST', 'localhost' );\r\n<\/pre>\n

Now that we have all the information we need we are going to open a MySQL command prompt with the following command:<\/p>\n

# mysql -u username_here -p -d database_name_here<\/pre>\n

Enter the password when prompted and then enter the following query in the MySQL command prompt:<\/p>\n

mysql> use 'database_name_here';\r\nReading table information for completion of table and column names\r\nYou can turn off this feature to get a quicker startup with -A\r\n\r\nDatabase changed\r\n<\/pre>\n

Look for the users table with the following query:<\/p>\n

mysql> show tables LIKE '%users';\r\n+---------------------------------------+\r\n| Tables_in_database_name_here (%users) |\r\n+---------------------------------------+\r\n| wp_users                              |\r\n+---------------------------------------+\r\n1 row in set (0.00 sec)\r\n<\/pre>\n

Use the prefixed users table from the output of the query above in the following query, for an example we’ll use ‘wp_users’. We also use ‘admin’ as the administrator user, your administrator username might be different:<\/p>\n

mysql> SELECT ID, user_login, user_pass FROM wp_users WHERE user_login = 'admin';\r\n+----+------------+------------------------------------+\r\n| ID | user_login | user_pass                          |\r\n+----+------------+------------------------------------+\r\n|  1 | admin      | $P$BiD1utsVDNrPVFm7.wcwPGzc.rKbu5. |\r\n+----+------------+------------------------------------+\r\n1 row in set (0.00 sec)\r\n<\/pre>\n

The query above outputs a row containing the current encrypted WordPress password of the administrator user, we are going to change it using this query, be sure to substitute ‘new_password’ for your own password:<\/p>\n

mysql> UPDATE wp_users SET user_pass=MD5('new_password') WHERE user_login = 'admin';\r\nQuery OK, 1 row affected (0.01 sec)\r\nRows matched: 1  Changed: 1  Warnings: 0\r\n<\/pre>\n

Now check if the password has changed:<\/p>\n

mysql> SELECT ID, user_login, user_pass FROM wp_users WHERE user_login = 'admin';\r\n+----+------------+----------------------------------+\r\n| ID | user_login | user_pass                        |\r\n+----+------------+----------------------------------+\r\n|  1 | admin      | 88162595c58939c4ae0b35f39892e6e7 |\r\n+----+------------+----------------------------------+\r\n1 row in set (0.00 sec)\r\n<\/pre>\n

Then type exit to exit the MySQL command prompt:<\/p>\n

mysql> exit\r\nBye\r\n<\/pre>\n

Resetting the WordPress admin password through wp-cli<\/h2>\n

If you do not want to bother going the long route through MySQL you can change your WordPress administrator password with a neat tool called wp-cli which is considered the swiss army knife of WordPress. To download wp-cli execute the following command:<\/p>\n

# curl -O https:\/\/raw.githubusercontent.com\/wp-cli\/builds\/gh-pages\/phar\/wp-cli.phar<\/pre>\n

Check if wp-cli is working:<\/p>\n

# php wp-cli.phar --info<\/pre>\n

Then make wp-cli executable and move it to ‘\/usr\/local\/bin’:<\/p>\n

# chmod +x wp-cli.phar\r\n# mv wp-cli.phar \/usr\/local\/bin\/wp<\/pre>\n

Now navigate to the root directory of your WordPress installation and then execute the following wp-cli command:<\/p>\n

# wp user update admin --user-pass=new_password<\/pre>\n

Again, make sure that you replace ‘admin’ with your WordPress administrator username and ‘new_password’ with your desired password.<\/p>\n

If you are running wp-cli as root then add the ‘–allow-root’ option at the end of the command like this:<\/p>\n

# wp user update admin --user-pass=new_password --allow-root<\/pre>\n

That’s it, now you should have successfully changed the password for your WordPress administrator user.<\/p>\n

Of course, you don\u2019t have to\u00a0reset WordPress admin password via MySQL command prompt yourself, if you use one of our WordPress Hosting<\/a> services, in which case you can simply ask our expert Linux admins to change your WordPress administrator password for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n

PS. If you liked this post on how to reset WordPress admin password via MySQL command prompt, please share it with your friends on the social networks using the buttons on the right or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"

Have you ever forgotten your WordPress administrator password and did not have access to your e-mail account or haven’t configured … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":25471,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1710,1702,1703],"tags":[39,32,148],"yoast_head":"\nHow to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-30T08:51:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-05T12:45:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Reset-WordPress-Admin-Password-via-MySQL-Command-Prompt.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Reset WordPress Admin Password via MySQL Command Prompt\",\"datePublished\":\"2018-01-30T08:51:37+00:00\",\"dateModified\":\"2022-12-05T12:45:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/\"},\"wordCount\":516,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Reset-WordPress-Admin-Password-via-MySQL-Command-Prompt.jpg\",\"keywords\":[\"mysql\",\"Password\",\"wordpress\"],\"articleSection\":[\"CMS, CRM, ERP\",\"Databases\",\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/\",\"name\":\"How to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Reset-WordPress-Admin-Password-via-MySQL-Command-Prompt.jpg\",\"datePublished\":\"2018-01-30T08:51:37+00:00\",\"dateModified\":\"2022-12-05T12:45:48+00:00\",\"description\":\"How to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Reset-WordPress-Admin-Password-via-MySQL-Command-Prompt.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Reset-WordPress-Admin-Password-via-MySQL-Command-Prompt.jpg\",\"width\":1200,\"height\":600,\"caption\":\"How to Reset WordPress Admin Password via MySQL Command Prompt\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Reset WordPress Admin Password via MySQL Command Prompt\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting","description":"How to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/","og_locale":"en_US","og_type":"article","og_title":"How to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting","og_description":"How to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-01-30T08:51:37+00:00","article_modified_time":"2022-12-05T12:45:48+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Reset-WordPress-Admin-Password-via-MySQL-Command-Prompt.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Reset WordPress Admin Password via MySQL Command Prompt","datePublished":"2018-01-30T08:51:37+00:00","dateModified":"2022-12-05T12:45:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/"},"wordCount":516,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Reset-WordPress-Admin-Password-via-MySQL-Command-Prompt.jpg","keywords":["mysql","Password","wordpress"],"articleSection":["CMS, CRM, ERP","Databases","Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/","name":"How to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Reset-WordPress-Admin-Password-via-MySQL-Command-Prompt.jpg","datePublished":"2018-01-30T08:51:37+00:00","dateModified":"2022-12-05T12:45:48+00:00","description":"How to Reset WordPress Admin Password via MySQL Command Prompt - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Reset-WordPress-Admin-Password-via-MySQL-Command-Prompt.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Reset-WordPress-Admin-Password-via-MySQL-Command-Prompt.jpg","width":1200,"height":600,"caption":"How to Reset WordPress Admin Password via MySQL Command Prompt"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-reset-wordpress-admin-password-via-mysql-command-prompt\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Reset WordPress Admin Password via MySQL Command Prompt"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/25182"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=25182"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/25182\/revisions"}],"predecessor-version":[{"id":43716,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/25182\/revisions\/43716"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/25471"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=25182"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=25182"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=25182"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}