{"id":3420,"date":"2016-01-19T12:58:08","date_gmt":"2016-01-19T12:58:08","guid":{"rendered":"https:\/\/cpanelplesk.com\/wp62\/?p=3420"},"modified":"2021-02-06T10:10:37","modified_gmt":"2021-02-06T10:10:37","slug":"enable-server-status-page-to-monitor-apache-web-server-load","status":"publish","type":"post","link":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/","title":{"rendered":"Enable server-status page to monitor Apache web server load"},"content":{"rendered":"<p>Mod-status is an Apache module which allows server administrators to monitor how well their server is performing with an HTML interface which can be accessible via web browser.<!--more--><\/p>\n<p>For this tutorial you must have a knowledge on how to install and configure <a href=\"https:\/\/cpanelplesk.com\/wp62\/how-to-install-linux-apache-mysql-php-on-centos-6-x\/\">Basic Apache Server.<\/a><\/p>\n<p><a href=\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/apache-status\/\" rel=\"attachment wp-att-3421\"><img fetchpriority=\"high\" decoding=\"async\" class=\"alignnone wp-image-3421 size-full pleslwp\" src=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/Apache-status-e1453208254725.jpg\" alt=\"Apache status\" width=\"343\" height=\"147\" srcset=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/Apache-status-e1453208254725.jpg 343w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/Apache-status-e1453208254725-300x129.jpg 300w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/Apache-status-e1453208254725-320x137.jpg 320w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/Apache-status-e1453208254725-239x102.jpg 239w\" sizes=\"(max-width: 343px) 100vw, 343px\" \/><\/a><\/p>\n<h3>\u00a0How to Enable mod_status in Apache<\/h3>\n<p>By default Apache comes with mod_status enabled, If not we can do it in Apache configuration file:<\/p>\n<div class=\"cpanel-files\"><\/div>\n<pre class=\"lang:default decode:true \">nano \/etc\/httpd\/conf\/httpd.conf<\/pre>\n<p>Open the file and Search for the word \u201c<strong>mod_status<\/strong>\u201d or keep scrolling down until you find a line containing:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">#LoadModule status_module modules\/mod_status.so<\/pre>\n<\/div>\n<p>#means mod_status is disabled. Remove the \u2018<strong>#<\/strong>\u2018 from start of line to enable mod_status.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">LoadModule status_module modules\/mod_status.so<\/pre>\n<\/div>\n<h3>How to configure mod-status<\/h3>\n<p>Now search for the word \u201c<strong>Location<\/strong>\u201d or scroll down until you find a section for\u00a0<strong>mod_status<\/strong>\u00a0which would look like following:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \"># Allow server status reports generated by mod_status,\r\n# with the URL of http:\/\/servername\/server-status\r\n# Change the \".example.com\" to match your domain to enable.\r\n#&lt;Location \/server-status&gt;\r\n# SetHandler server-status\r\n#\u00a0Order deny,allow\r\n#\u00a0Deny from all\r\n#\u00a0Allow from .example.com\r\n#&lt;\/Location&gt;\r\n<\/pre>\n<\/div>\n<p>In the above, uncomment the lines for\u00a0<strong>Location directive<\/strong>,\u00a0<strong>SetHandler<\/strong>\u00a0and the\u00a0<strong>directory restrictions <\/strong>as per your requirements. For example, we can keep it simple with the\u00a0<strong>Order Allow<\/strong>,\u00a0<strong>deny<\/strong>\u00a0and it\u2019s\u00a0<strong>allowed for all<\/strong>.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">&lt;Location \/server-status&gt;\r\nSetHandler server-status\r\nOrder allow,deny\r\nDeny from all\r\nAllow from all\r\n&lt;\/Location&gt;<\/pre>\n<\/div>\n<p>If you have created more than one Apache virtual hosts, you need to define the same configuration for each virtual host for any domains you\u2019ve configured in Apache.<\/p>\n<p>For Example it will look like this:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">&lt;VirtualHost *:80&gt;\r\n\r\nServerAdmin tecmint@example.com\r\nDocumentRoot \/var\/www\/html\/example.com\r\nServerName example.com\r\nErrorLog logs\/example.com-error_log\r\nCustomLog logs\/example.com-access_log common\r\n&lt;Location \/server-status&gt;\r\nSetHandler server-status\r\nOrder allow,deny\r\nDeny from all\r\nAllow from example.com\r\n&lt;\/Location&gt;\r\n&lt;\/VirtualHost&gt;<\/pre>\n<\/div>\n<h3>Enable ExtendedStatus:<\/h3>\n<p>By enabling \u201c<strong>ExtendedStatus<\/strong>\u201d we will be able to get the more statistical information like, <strong>CPU usage<\/strong>,\u00a0<strong>request per second<\/strong>,\u00a0<strong>total traffic<\/strong>, etc. To enable it, we have to edit the same\u00a0<strong>httpd.conf<\/strong>\u00a0file and search for the word \u201c<strong>Extended<\/strong>\u201d and Uncomment the line and need to set the status \u201c<strong>On<\/strong>\u201d for\u00a0<strong>ExtendedStatus<\/strong>\u00a0directive.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \"># ExtendedStatus controls whether Apache will generate \"full\" status\r\n# information (ExtendedStatus On) or just basic information (ExtendedStatus\r\n# Off) when the \"server-status\" handler is called. The default is Off.\r\n#\r\nExtendedStatus On\r\n<\/pre>\n<\/div>\n<h3>Restart Apache:<\/h3>\n<p>Now to make sure that you\u2019ve correctly enabled and configured Apache server status page run:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \"># httpd -t\r\nSyntax OK<\/pre>\n<\/div>\n<p>Finally restart the httpd service:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">Service httpd restart<\/pre>\n<\/div>\n<p>Access mod_status Page:<\/p>\n<p>Now the <a href=\"https:\/\/cpanelplesk.com\/wp62\/monitor-apache-webserver-uptime\/\">Apache status<\/a> page will be accessible via your domain name with \u201c<strong>\/server-status<\/strong>\u201d at the following URL\u2019s.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">http:\/\/serveripaddress\/server-status\r\nOR\r\nhttp:\/\/serev-hostname\/server-status<\/pre>\n<\/div>\n<p>Now with the above HTML you can see all information about\u00a0server uptime, process Id\u00a0with its\u00a0respective client, and the page they are trying to access.It will helps us to understand the situation better.<\/p>\n<p>You can refresh the page every time to see the updated statistics.<\/p>\n<p>You can also set the automatic refresh to do that, You can add \u201c?refresh=N\u201d\u00a0at the end of the\u00a0URL. Where\u00a0N\u00a0can be replaced with the number of seconds which you want your page to get refreshed.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">http:\/\/serveripaddress\/server-status\/?refresh=5\r\n<\/pre>\n<\/div>\n<p>To view the Apache status page from the command-line interface using the special command-line browsers called\u00a0links or lynx. You can install them using below command:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \"># yum install links\r\nOR\r\n# yum install lynx<\/pre>\n<\/div>\n<p>Once done, you can get the same statistics on your terminal by using following command.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">links http:\/\/serveripaddress\/server-status\r\nOR\r\nlynx http:\/\/serveripaddress\/server-status\r\nOR\r\n\/etc\/init.d\/httpd fullstatus<\/pre>\n<\/div>\n<p>That\u2019s all for now, we will come with more tips and tricks on cpanel and plesk in future tutorials. Till then stay tuned to\u00a0<strong>cpanelplesk.com<\/strong>\u00a0and don\u2019t forget to send your valuable comments.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mod-status is an Apache module which allows server administrators to monitor how well their server is performing with an HTML interface which can be accessible via web browser. [&#8230;]<\/p>\n<p><a class=\"understrap-read-more-link\" href=\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/\">Continue Reading&#8230;<\/a><\/p>\n","protected":false},"author":2,"featured_media":3426,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,14],"tags":[],"class_list":["post-3420","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cpanel","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Enable server-status page to monitor Apache web server load - cPanel Plesk<\/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:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Enable server-status page to monitor Apache web server load - cPanel Plesk\" \/>\n<meta name=\"twitter:description\" content=\"Mod-status is an Apache module which allows server administrators to monitor how well their server is performing with an HTML interface which can be accessible via web browser. [...]Continue Reading...\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/apache-logo.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Seemab Saleem\" \/>\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:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/\"},\"author\":{\"name\":\"Seemab Saleem\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\"},\"headline\":\"Enable server-status page to monitor Apache web server load\",\"datePublished\":\"2016-01-19T12:58:08+00:00\",\"dateModified\":\"2021-02-06T10:10:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/\"},\"wordCount\":478,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/apache-logo.png\",\"articleSection\":[\"Cpanel\",\"Linux\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/\",\"name\":\"Enable server-status page to monitor Apache web server load - cPanel Plesk\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/apache-logo.png\",\"datePublished\":\"2016-01-19T12:58:08+00:00\",\"dateModified\":\"2021-02-06T10:10:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#primaryimage\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/apache-logo.png\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/apache-logo.png\",\"width\":350,\"height\":350},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cpanelplesk.com\/wp62\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Enable server-status page to monitor Apache web server load\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/\",\"name\":\"cPanel Plesk\",\"description\":\"Blog on famous hosting control panels\",\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\",\"name\":\"Farooq Omer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"width\":300,\"height\":44,\"caption\":\"Farooq Omer\"},\"logo\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\",\"name\":\"Seemab Saleem\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"caption\":\"Seemab Saleem\"},\"description\":\"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!\",\"sameAs\":[\"https:\/\/cpanelplesk.com\/wp62\"],\"url\":\"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Enable server-status page to monitor Apache web server load - cPanel Plesk","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:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/","twitter_card":"summary_large_image","twitter_title":"Enable server-status page to monitor Apache web server load - cPanel Plesk","twitter_description":"Mod-status is an Apache module which allows server administrators to monitor how well their server is performing with an HTML interface which can be accessible via web browser. [...]Continue Reading...","twitter_image":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/apache-logo.png","twitter_misc":{"Written by":"Seemab Saleem","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#article","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/"},"author":{"name":"Seemab Saleem","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648"},"headline":"Enable server-status page to monitor Apache web server load","datePublished":"2016-01-19T12:58:08+00:00","dateModified":"2021-02-06T10:10:37+00:00","mainEntityOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/"},"wordCount":478,"commentCount":0,"publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/apache-logo.png","articleSection":["Cpanel","Linux"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/","url":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/","name":"Enable server-status page to monitor Apache web server load - cPanel Plesk","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#primaryimage"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/apache-logo.png","datePublished":"2016-01-19T12:58:08+00:00","dateModified":"2021-02-06T10:10:37+00:00","breadcrumb":{"@id":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#primaryimage","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/apache-logo.png","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/01\/apache-logo.png","width":350,"height":350},{"@type":"BreadcrumbList","@id":"https:\/\/cpanelplesk.com\/wp62\/enable-server-status-page-to-monitor-apache-web-server-load\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cpanelplesk.com\/wp62\/"},{"@type":"ListItem","position":2,"name":"Enable server-status page to monitor Apache web server load"}]},{"@type":"WebSite","@id":"https:\/\/cpanelplesk.com\/wp62\/#website","url":"https:\/\/cpanelplesk.com\/wp62\/","name":"cPanel Plesk","description":"Blog on famous hosting control panels","publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13","name":"Farooq Omer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","width":300,"height":44,"caption":"Farooq Omer"},"logo":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/"}},{"@type":"Person","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648","name":"Seemab Saleem","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","caption":"Seemab Saleem"},"description":"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!","sameAs":["https:\/\/cpanelplesk.com\/wp62"],"url":"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/"}]}},"_links":{"self":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/3420","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/comments?post=3420"}],"version-history":[{"count":0,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/3420\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media\/3426"}],"wp:attachment":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media?parent=3420"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/categories?post=3420"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/tags?post=3420"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}