{"id":2876,"date":"2018-11-04T21:36:39","date_gmt":"2018-11-04T16:06:39","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=2876"},"modified":"2018-11-04T21:36:39","modified_gmt":"2018-11-04T16:06:39","slug":"how-to-install-redis-cache-server-in-centos-7","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/","title":{"rendered":"How to Install Redis cache server in centos 7."},"content":{"rendered":"<h2>How to Install Redis cache server in centos 7.<\/h2>\n<p><strong>Date Posted: 02 -09-2018<\/strong><\/p>\n<p>Redis is an in-memory data structure store, used as a database server, cache, and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps and streams.<\/p>\n<p>It also provides PHP module for communication between PHP script with Redis server. Redis is Written in C programming language.<\/p>\n<p>In this tutorial will help you with the installation of Redis server along with PHP Redis PHP extensions on a CentOS 7 server.Let us have a step by step instructions, how to implement it.<\/p>\n<h3 class=\"heading1\">Step 1 : Prerequisites<\/h3>\n<p>1. Login to your server using secured shell access with the root account.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\"># ssh root@remote<\/pre>\n<p>2. Redis packages are not available in our default <strong>Yum<\/strong> Repository, so that Install a <strong>EPEL\u00a0<\/strong> Reposistory on your server . To Enable this Repository, execute the following command shown below,<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms ~]# sudo yum install epel-release\r\n<\/pre>\n<p>Package epel-release-7-11.noarch already installed and latest version. This will be a end output message conveyed to you.<\/p>\n<h3>Step\u00a0 2 : Install Redis Server<\/h3>\n<p>1. Now, we can utilize a Yum repository , to install a Redis on our server.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms ~]# sudo yum install redis<\/pre>\n<p>2. After a\u00a0 successful installation.<strong>start<\/strong> Redis service and <strong>enable<\/strong> to auto-start on system reboot.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms ~]# sudo systemctl start redis<\/pre>\n<p>Enable it and check,whether the Redis service is active in our server.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms ~]# sudo systemctl enable redis\r\n\r\n Created symlink from \/etc\/systemd\/system\/multi-user.target.wants\/redis.service to \/usr\/lib\/systemd\/system\/redis.service.<\/pre>\n<h3>Step 3 : Install Redis PHP extension<\/h3>\n<p>1.\u00a0 Check\u00a0 PHP\u00a0 is\u00a0 installed on your system.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms conf]# php --version\r\n\r\nPHP 7.1.23 (cli) (built: Oct 10 2018 12:11:12) ( NTS )\r\nCopyright (c) 1997-2018 The PHP Group\r\nZend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies.<\/pre>\n<p>In my system, PHP version\u00a0 7.1\u00a0 is enabled.<\/p>\n<p>2.\u00a0\u00a0To enable Redis PHP extension on your CentOS server. Follow these commands below,<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\"># pecl install igbinary igbinary-devel redis<\/pre>\n<p>In many of the system shows an error,\u00a0<strong>-bash: pecl: command not found.\u00a0<\/strong>To solve this , download the important PHP &#8211; Modules to enable the pecl command.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms ~]# yum install php-devel<\/pre>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms ~]# yum install php-pear<\/pre>\n<p>After installation of this PHP module, Pecl command is Enabled\u00a0 . Now , Use the pecl to do a Redis PHP extension.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\"># pecl install igbinary igbinary-devel redis<\/pre>\n<p>3. After\u00a0 executed\u00a0 a\u00a0 above command ,verify Redis PHP extension is enabled or not.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms ~]# php -m | grep redis<\/pre>\n<p>Redis server has been installed on your system along with the PHP extension.<\/p>\n<h3 class=\"heading1\">Step 4 : Configure Redis as a Cache Server<\/h3>\n<p>Redis to make any\u00a0 important changes you can use its configuration file\u00a0 is: <strong>\/etc\/redis\/redis.conf. <\/strong>Edit the Redis configuration file in a text editor to make changes,<\/p>\n<p>1 . Configuring a Redis cache server.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms \/]# cd \/etc\r\n\r\n[root@sms etc]# mkdir redis\r\n\r\n[root@sms etc]# cd redis\r\n\r\n[root@sms redis]# touch redis.conf\r\n\r\n[root@sms redis]# nano redis.conf<\/pre>\n<p>2.\u00a0Update the following values in Redis configuration file according to your requirement. You can increase max memory limit as per available on your server.<\/p>\n<p><a href=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/11\/redis-config.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-2877\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/11\/redis-config.png\" alt=\"\" width=\"493\" height=\"169\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/11\/redis-config.png 493w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2018\/11\/redis-config-300x103.png 300w\" sizes=\"auto, (max-width: 493px) 100vw, 493px\" \/><\/a><\/p>\n<p>The above configuration tells Redis to remove any key using the LRU algorithm when the max memory of 256mb is reached. Save the configuration file.<\/p>\n<p>3. Restart the Redis service.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms redis]# systemctl restart redis<\/pre>\n<h3 class=\"heading1\">Step 5 : Test Connection to Redis Server<\/h3>\n<p>Use redis-cli tool to verify the connection between Redis server and redis-cli. Check the Ping &#8211; pong Response in it.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">[root@sms redis]# redis-cli\r\n\r\n127.0.0.1:6379&gt; ping\r\n\r\nPONG\r\n\r\n127.0.0.1:6379&gt;<\/pre>\n<p>Thats it ! Redis ready for use.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to Install Redis cache server in centos 7. Date Posted: 02 -09-2018 Redis is an in-memory data structure store, used as a database server, cache, and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps and streams. It also provides&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to Install Redis cache server in centos 7.<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"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":[284,223],"tags":[415,475],"class_list":{"0":"post-2876","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-centos","7":"category-shell-script","8":"tag-centos-7","9":"tag-redis","10":"h-entry","12":"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\/how-to-install-redis-cache-server-in-centos-7\/\" \/>\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=\"How to Install Redis cache server in centos 7. Date Posted: 02 -09-2018 Redis is an in-memory data structure store, used as a database server, cache, and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps and streams. It also provides&hellip; Continue Reading How to Install Redis cache server in centos 7.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/\" \/>\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=\"2018-11-04T16:06:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/11\/redis-config.png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\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=\"admin\" \/>\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\\\/how-to-install-redis-cache-server-in-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"How to Install Redis cache server in centos 7.\",\"datePublished\":\"2018-11-04T16:06:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/\"},\"wordCount\":446,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/redis-config.png\",\"keywords\":[\"Centos 7\",\"Redis\"],\"articleSection\":[\"Centos\",\"Shell script\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/redis-config.png\",\"datePublished\":\"2018-11-04T16:06:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/redis-config.png\",\"contentUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2018\\\/11\\\/redis-config.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-redis-cache-server-in-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Redis cache server in centos 7.\"}]},{\"@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\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/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\/how-to-install-redis-cache-server-in-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"How to Install Redis cache server in centos 7. Date Posted: 02 -09-2018 Redis is an in-memory data structure store, used as a database server, cache, and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps and streams. It also provides&hellip; Continue Reading How to Install Redis cache server in centos 7.","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2018-11-04T16:06:39+00:00","og_image":[{"url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/11\/redis-config.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"How to Install Redis cache server in centos 7.","datePublished":"2018-11-04T16:06:39+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/"},"wordCount":446,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/11\/redis-config.png","keywords":["Centos 7","Redis"],"articleSection":["Centos","Shell script"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/11\/redis-config.png","datePublished":"2018-11-04T16:06:39+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/#primaryimage","url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/11\/redis-config.png","contentUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2018\/11\/redis-config.png"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-redis-cache-server-in-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Redis cache server in centos 7."}]},{"@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\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-Ko","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2876","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=2876"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2876\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=2876"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=2876"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=2876"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}