{"id":8060,"date":"2024-07-17T15:54:01","date_gmt":"2024-07-17T10:24:01","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=8060"},"modified":"2024-07-17T16:03:17","modified_gmt":"2024-07-17T10:33:17","slug":"installation-of-magento-in-linux","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/","title":{"rendered":"INSTALLATION OF MAGENTO IN LINUX"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<p><strong>Introduction To Magento<\/strong><\/p>\n\n\n\n<p>Magento is an open source e-commerce platform written with PHP. Magento is the best possible shopping cart solution for businesses. We can also use different themes functionalities to modifiy colors and fonts to make effective in your website.<\/p>\n\n\n\n<p><strong>System Requirements<\/strong><\/p>\n\n\n\n<p>You need to Install these Requirements to run magento in your linux system . before check the version which version you want to install. These are basic requirements , <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Apache2<\/li>\n\n\n\n<li>MySQL<\/li>\n\n\n\n<li>PHP and the extensions<\/li>\n\n\n\n<li>Composer<\/li>\n\n\n\n<li>Magento<\/li>\n<\/ul>\n\n\n\n<p><strong>STEP 1 : Install apache<\/strong><\/p>\n\n\n\n<p>To install apache2 on linux , <\/p>\n\n\n\n<p><em> sudo apt update<\/em>                                    <\/p>\n\n\n\n<p> This command is used for update the package index.<\/p>\n\n\n\n<p><em>sudo apt install apache2<\/em><\/p>\n\n\n\n<p>This command is  used for installing the apache2.<\/p>\n\n\n\n<p><em>sudo apache2ctl   -v<\/em><\/p>\n\n\n\n<p>You can use this command to check the version of the apache2<\/p>\n\n\n\n<p>You may check that apache is correctly installed  by entering domain name  in your browser.<\/p>\n\n\n\n<p><strong>STEP 2: Install MYSQL<\/strong><\/p>\n\n\n\n<p>To install mysql on linux,<\/p>\n\n\n\n<p><em>sudo apt install  mysql-server<\/em><\/p>\n\n\n\n<p>This command is used for installing mysql ,after that  you need to give configure access mysql root account<\/p>\n\n\n\n<p><em>sudo mysql    <\/em>                                                                                                                                                                                                                                  SELECT user, autheitcation_string,plugin,host  FROM  mysql user;<\/p>\n\n\n\n<p>ALTER USER &#8216;root&#8217;@&#8217;localhost&#8217; IDENTIFIED WITH mysql_native_password BY  &#8216;your_password&#8217;;                           exit<\/p>\n\n\n\n<p>You need the change &#8216;your _password&#8217; to your own password.<\/p>\n\n\n\n<p>Next , you need to create user for the magento<\/p>\n\n\n\n<p><em>mysql  -u root  -p  <\/em>                                                                                                                                                                       <\/p>\n\n\n\n<p><em>SELECT  user, authetication_string,  plugin, host  FROM mysql.user;<\/em><\/p>\n\n\n\n<p><em>CREATE USER &#8216;magento&#8217;@&#8217;localhost&#8217;  IDENTIFIED BY  &#8216;your _password&#8217;;<\/em><\/p>\n\n\n\n<p>Then, you need to modify the user  and the permissions<\/p>\n\n\n\n<p><em>ALTER USER &#8216;magento&#8217;@&#8217;localhost&#8217; IDENTIFIED  WITH  mysql_native_password  BY &#8216;your_password&#8221;<\/em><\/p>\n\n\n\n<p><em>GRANT  ALL PRIVILEGES ON  *.* TO &#8216;magento2&#8217;@&#8217;localhost&#8217;  WITH GRANT OPTION ;   <\/em>                                      <em>exit         <\/em><\/p>\n\n\n\n<p>You need to create a database for the magento,                                                                                                            <em>mysql  -u  magento2                                                                                                                                                                                      CREATE  DATABASE  magento;                                                                                                                                                                  exit<\/em><\/p>\n\n\n\n<p><strong>STEP 3: Install PHP <\/strong><\/p>\n\n\n\n<p><em>sudo apt  update<\/em><\/p>\n\n\n\n<p>This command is used for update the  apt repositories.<\/p>\n\n\n\n<p><em>sudo apt install PHP (required version)  libapache2 &#8211; mod &#8211; php  php &#8211; mysql <\/em><\/p>\n\n\n\n<p>The Following command is used for installing the PHP and the enabling the libapache. In the place required version you need to give which version you want to install.<\/p>\n\n\n\n<p><em>sudo apt install  PHP(required version)-mbstring<\/em><\/p>\n\n\n\n<p><em>sudo a2enmod php<\/em><\/p>\n\n\n\n<p>The following command is used for the enable mbstring and the PHP extensions. In the place required version you need to give which version you want to install.<\/p>\n\n\n\n<p><strong>STEP 4: Install Composer<\/strong><\/p>\n\n\n\n<p><em>curl  -sS https:\/\/getcomposer .org\/installer -o composer &#8211; setup .php                                                                                       sudo php composer -setup.php  &#8211; &#8211; install -dir =\/usr\/bin &#8211; -filename=composer<\/em><\/p>\n\n\n\n<p>This command is used for installing the composer to start with the root directory.<\/p>\n\n\n\n<p><em>composer<\/em><\/p>\n\n\n\n<p>The <em>(composer <\/em>)command used to check the version of the composer.<\/p>\n\n\n\n<p><strong>STEP 5: Install Magento<\/strong><\/p>\n\n\n\n<p>First we need to open the folder where the root folder is for eg:<\/p>\n\n\n\n<p><em>cd \/var\/www\/html<\/em><\/p>\n\n\n\n<p>You need to Create  a composer project<\/p>\n\n\n\n<p><em>sudo composer create -project  &#8211; &#8211; repository &#8211; url =https:\/\/repo.magento.com\/  magento\/project -community-edition =(2.4.3 )magento2<\/em><\/p>\n\n\n\n<p>In the place of 2.4.3 you need to replace which version you need to install.<\/p>\n\n\n\n<p>Then You need to set permissions <\/p>\n\n\n\n<p><em>cd \/var\/www\/html\/magento<\/em><\/p>\n\n\n\n<p><em>sudo find var generated vendor  pub\/static pub\/media app\/etc  &#8211; type  f  -exec  chmod g+w {} +<\/em><\/p>\n\n\n\n<p><em>sudo  find var generated vendor  pub\/static pub\/media app\/etc  -type   d  -exec  chmod g+ws {} +<\/em><\/p>\n\n\n\n<p><em>sudo chown -R user_name : www-data <\/em><\/p>\n\n\n\n<p>Then you need to open the install directory for the magento, In the place of magento give the correct directory. <\/p>\n\n\n\n<p><em>cd\/var\/www\/html\/magento<\/em><\/p>\n\n\n\n<p><em>php bin\/magento  setup:install  &#8211; &#8211; base -url= &lt;your-domain&gt;  &#8211; &#8211; db &#8211; host =localhost   &#8211;db-user=magento &#8211;db-password=&lt;your-db-password&gt;<\/em><\/p>\n\n\n\n<p><em>base url -Give a your domain which you want  eg: hello.magento.com<\/em><\/p>\n\n\n\n<p><em>db name &#8211; Magento database name you need to enter<\/em><\/p>\n\n\n\n<p><em>db user &#8211; Magento database user name that you need to enter<\/em><\/p>\n\n\n\n<p><em>db password &#8211; enter the mysql password<\/em><\/p>\n\n\n\n<p>And then ,restart the apache2<\/p>\n\n\n\n<p><em>sudo systemctl restart apache2<\/em><\/p>\n\n\n\n<p><em>127.0.0.1 hello.magento.com <\/em><\/p>\n\n\n\n<p>Next you need to save the file and the below command,<\/p>\n\n\n\n<p><em>sudo  a2ensite  hello.magento.com<\/em><\/p>\n\n\n\n<p><em>php bin\/magento indexer :reindex &amp;&amp; php bin\/magento se :up &amp;&amp;php  bin\/magento  se:s:d -f &amp;&amp; php bin \/magento  c:f &amp;&amp; php bin\/magento module:disable magento_TwoFactorAuthoruization<\/em><\/p>\n\n\n\n<p>Now you check with browser using http:\/\/hello.magento.com, then your luma page or admin page will be displayed. <\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<details class=\"wp-block-details is-layout-flow wp-block-details-is-layout-flow\"><summary><\/summary>\n<p><\/p>\n<\/details>\n","protected":false},"excerpt":{"rendered":"<p>Introduction To Magento Magento is an open source e-commerce platform written with PHP. Magento is the best possible shopping cart solution for businesses. We can also use different themes functionalities to modifiy colors and fonts to make effective in your website. System Requirements You need to Install these Requirements to&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">INSTALLATION OF MAGENTO IN LINUX<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":511,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-8060","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction To Magento Magento is an open source e-commerce platform written with PHP. Magento is the best possible shopping cart solution for businesses. We can also use different themes functionalities to modifiy colors and fonts to make effective in your website. System Requirements You need to Install these Requirements to&hellip; Continue Reading INSTALLATION OF MAGENTO IN LINUX\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-17T10:24:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-17T10:33:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Harish S\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Harish S\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/installation-of-magento-in-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/installation-of-magento-in-linux\\\/\"},\"author\":{\"name\":\"Harish S\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/f9d45deb09685b69951812b1d7ffc3f4\"},\"headline\":\"INSTALLATION OF MAGENTO IN LINUX\",\"datePublished\":\"2024-07-17T10:24:01+00:00\",\"dateModified\":\"2024-07-17T10:33:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/installation-of-magento-in-linux\\\/\"},\"wordCount\":729,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/installation-of-magento-in-linux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/installation-of-magento-in-linux\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/installation-of-magento-in-linux\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2024-07-17T10:24:01+00:00\",\"dateModified\":\"2024-07-17T10:33:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/installation-of-magento-in-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/installation-of-magento-in-linux\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/installation-of-magento-in-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"INSTALLATION OF MAGENTO IN LINUX\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/f9d45deb09685b69951812b1d7ffc3f4\",\"name\":\"Harish S\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f05874903172ef5899aa26741b57cc03ff7f8612e50e1b479fbff6ec66da4d52?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f05874903172ef5899aa26741b57cc03ff7f8612e50e1b479fbff6ec66da4d52?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f05874903172ef5899aa26741b57cc03ff7f8612e50e1b479fbff6ec66da4d52?s=96&r=g\",\"caption\":\"Harish S\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/harish\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction To Magento Magento is an open source e-commerce platform written with PHP. Magento is the best possible shopping cart solution for businesses. We can also use different themes functionalities to modifiy colors and fonts to make effective in your website. System Requirements You need to Install these Requirements to&hellip; Continue Reading INSTALLATION OF MAGENTO IN LINUX","og_url":"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2024-07-17T10:24:01+00:00","article_modified_time":"2024-07-17T10:33:17+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"Harish S","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"Harish S","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/"},"author":{"name":"Harish S","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/f9d45deb09685b69951812b1d7ffc3f4"},"headline":"INSTALLATION OF MAGENTO IN LINUX","datePublished":"2024-07-17T10:24:01+00:00","dateModified":"2024-07-17T10:33:17+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/"},"wordCount":729,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/","url":"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2024-07-17T10:24:01+00:00","dateModified":"2024-07-17T10:33:17+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/installation-of-magento-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"INSTALLATION OF MAGENTO IN LINUX"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/f9d45deb09685b69951812b1d7ffc3f4","name":"Harish S","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f05874903172ef5899aa26741b57cc03ff7f8612e50e1b479fbff6ec66da4d52?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f05874903172ef5899aa26741b57cc03ff7f8612e50e1b479fbff6ec66da4d52?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f05874903172ef5899aa26741b57cc03ff7f8612e50e1b479fbff6ec66da4d52?s=96&r=g","caption":"Harish S"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/harish\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-260","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8060","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/511"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=8060"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/8060\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=8060"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=8060"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=8060"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}