{"id":561,"date":"2013-02-07T21:49:35","date_gmt":"2013-02-08T02:49:35","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/02\/07\/parse-archived-raw-access-logs-from-cpanel\/"},"modified":"2021-08-16T23:21:38","modified_gmt":"2021-08-17T03:21:38","slug":"parse-archived-raw-access-logs-from-cpanel","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/","title":{"rendered":"Parse archived raw access logs from cPanel"},"content":{"rendered":"<div class=\"in_this_tutorial\">\n<h2>Navigation:<\/h2>\n<p><a class=\"btn btn-primary\" href=\"#review-logs\" type=\"button\">View archived logs<\/a> <a class=\"btn btn-primary\" href=\"#parse-ips\" type=\"button\">Parse IPs<\/a> <a class=\"btn btn-primary\" href=\"#parse-user-agents\" type=\"button\">Parse User-Agents<\/a> <a class=\"btn btn-primary\" href=\"#parse-urls\" type=\"button\">Parse URLs<\/a> <a class=\"btn btn-primary\" href=\"#parse-referrers\" type=\"button\">Parse referrers<\/a><\/p>\n<\/div>\n<p>In this article I&#8217;m going to teach you how to parse archived raw access logs from your cPanel VPS (Virtual Private Server) or dedicated server. Reviewing requests from your archived raw access logs can help bring to light a common problematic request or user causing server issues that you might not have been able to catch otherwise.<\/p>\n<p>Before trying to follow along with this guide, you should have already read my article about <a href=\"\/support\/edu\/cpanel\/enable-raw-access-log-archiving-for-all-cpanel-accounts\/\" target=\"_blank\" rel=\"noopener\">how to enable raw access log archiving for all cPanel accounts<\/a>&nbsp;so that you actually have archived raw access logs to review.<\/p>\n<p>The method we&#8217;ll be going over for parsing these raw access logs is very handy, as you can do it on the server directly, instead of having to <a href=\"\/support\/edu\/cpanel\/accessing-the-raw-access-logs-in-cpanel\/\" target=\"_blank\" rel=\"noopener\">access the raw access logs in cPanel<\/a>&nbsp;which requires you to download the logs to your own computer first.<\/p>\n<p class=\"alert alert-danger\">To follow along with this guide you&#8217;ll need <a href=\"\/support\/server\/ssh\/root-access-faq\/\" target=\"_blank\" rel=\"noopener\">root access<\/a> to either your VPS or dedicated server so that you have full access to read all of the archived logs.<\/p>\n<p><a name=\"review-logs\"><\/a><\/p>\n<h2>Review archived raw access logs<\/h2>\n<p>Using the steps below I&#8217;ll show you how to connect to your server and run a command to read through your various archived raw access logs.<\/p>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/server\/ssh\/how-to-login-ssh\/\" target=\"\u201d_blank\u201d\" rel=\"noopener\">Login to your server via SSH<\/a> as the root user.<\/li>\n<li>Review all requests that happened during the month of January 2013 using the following command:\n<p class=\"cli\">zgrep &#8220;Jan\/2013&#8221; \/home\/*\/logs\/*-Jan-2013.gz | less<\/p>\n<p>You&#8217;ll be able to use <strong>Page Up<\/strong> and <strong>Page Down<\/strong> to scroll up and down through all of the log data.<\/p>\n<p>You can also use a forward slash <strong>\/<\/strong> which will put the <strong>less<\/strong> command in to search mode. So for instance after typing <strong>\/<\/strong> if you follow it with <strong>8\/Jan<\/strong> you&#8217;ll be dropped right to the section of the logs for January 8th.<\/p>\n<p>Once you are done reviewing the log this way, you can simply hit <strong>q<\/strong> to quit the <strong>less<\/strong> command.<\/p>\n<p>You should see entries like this, in this case we can see these lines are from our <strong>example.com<\/strong> site belonging to the <strong>userna5<\/strong> user:<\/p>\n<p class=\"cli\" style=\"white-space: nowrap; overflow: auto;\">\/home\/userna5\/logs\/example.com-Jan-2013.gz:123.123.123.123 &#8211; &#8211; [01\/Jan\/2013:00:09:10 -0500] &#8220;GET \/category\/linux\/ HTTP\/1.1&#8221; 200 3063 &#8220;-&#8221; &#8220;Mozilla\/5.0 (compatible; AhrefsBot\/4.0; +https:\/\/ahrefs.com\/robot\/)&#8221;<br \/>\n\/home\/userna5\/logs\/example.com-Jan-2013.gz:123.123.123.123 &#8211; &#8211; [01\/Jan\/2013:02:57:05 -0500] &#8220;GET \/2010\/12\/ HTTP\/1.1&#8221; 200 5197 &#8220;-&#8221; &#8220;Mozilla\/5.0 (compatible; AhrefsBot\/4.0; +https:\/\/ahrefs.com\/robot\/)&#8221;<br \/>\n\/home\/userna5\/logs\/example.com-Jan-2013.gz:123.123.123.123 &#8211; &#8211; [01\/Jan\/2013:04:06:32 -0500] &#8220;POST \/wp-cron.php HTTP\/1.0&#8221; 200 &#8211; &#8220;-&#8221; &#8220;WordPress\/3.4.1; https:\/\/atomlabs.net&#8221;<br \/>\n\/home\/userna5\/logs\/example.com-Jan-2013.gz:123.123.123.123 &#8211; &#8211; [01\/Jan\/2013:04:06:29 -0500] &#8220;GET \/wp-login.php HTTP\/1.1&#8221; 200 2147 &#8220;-&#8221; &#8220;Mozilla\/5.0 (compatible; AhrefsBot\/4.0; +https:\/\/ahrefs.com\/robot\/)&#8221;<\/p>\n<\/li>\n<\/ol>\n<p><a name=\"parse-ips\"><\/a><\/p>\n<h2>Parse IPs from archived raw access logs<\/h2>\n<p>Below I&#8217;ll show how to parse out all of the IP addresses from your raw access logs for the <strong>example.com<\/strong> domain.<\/p>\n<ol class=\"article_list\">\n<li>Run this command:\n<p class=\"cli\" style=\"white-space: nowrap; overflow: auto;\">zgrep &#8220;Jan\/2013&#8221; \/home\/userna5\/logs\/example.com-Jan-2013.gz | sed &#8216;s#:# #&#8217; | awk &#8216;{print $2}&#8217; | sort -n | uniq -c | sort -n<\/p>\n<p>This will spit back info like this:<\/p>\n<p class=\"cli\">76 123.123.123.129<br \/>\n80 123.123.123.124<br \/>\n599 123.123.123.125<br \/>\n6512 123.123.123.123<\/p>\n<\/li>\n<\/ol>\n<p><a name=\"parse-user-agents\"><\/a><\/p>\n<h2>Parse User-Agents from archived raw access logs<\/h2>\n<p>Parse out all of the User-agents from your raw access logs for the <strong>example.com<\/strong> domain.<\/p>\n<ol class=\"article_list\">\n<li>Run this command:\n<p class=\"cli\" style=\"white-space: nowrap; overflow: auto;\">zgrep &#8220;Jan\/2013&#8243; \/home\/userna5\/logs\/example.com-Jan-2013.gz | awk -F&#8221; &#8216;{print $6}&#8217; | sort | uniq -c | sort -n<\/p>\n<p>This will spit back info like this:<\/p>\n<p class=\"cli\" style=\"white-space: nowrap; overflow: auto;\">192 Mozilla\/5.0 (compatible; YandexBot\/3.0; +https:\/\/yandex.com\/bots)<br \/>\n340 Mozilla\/5.0 (compatible; Baiduspider\/2.0; +https:\/\/www.baidu.com\/search\/spider.html)<br \/>\n1509 Mozilla\/5.0 (compatible; SISTRIX Crawler; https:\/\/crawler.sistrix.net\/)<br \/>\n5548 Mozilla\/5.0 (compatible; AhrefsBot\/4.0; +https:\/\/ahrefs.com\/robot\/)<\/p>\n<\/li>\n<\/ol>\n<p><a name=\"parse-urls\"><\/a><\/p>\n<h2>Parse requested URLs from archived raw access logs<\/h2>\n<p>Below I&#8217;ll show how to parse out all of the requested URLs from your raw access logs for the <strong>example.com<\/strong> domain.<\/p>\n<ol class=\"article_list\">\n<li>Run this command:\n<p class=\"cli\" style=\"white-space: nowrap; overflow: auto;\">zgrep &#8220;Jan\/2013&#8221; \/home\/userna5\/logs\/example.com-Jan-2013.gz | awk &#8216;{print $7}&#8217; | sort | uniq -c | sort -n<\/p>\n<p>This will spit back info like this:<\/p>\n<p class=\"cli\">172 \/wp-login.php<br \/>\n201 \/robots.txt<br \/>\n380 \/<br \/>\n2017 \/opencart\/undefined<\/p>\n<\/li>\n<\/ol>\n<p><a name=\"parse-referrers\"><\/a><\/p>\n<h2>Parse referrers from archived raw access logs<\/h2>\n<p>Below I&#8217;ll show how to parse out all of the referrers from your raw access logs for the <strong>example.com<\/strong> domain.<\/p>\n<ol class=\"article_list\">\n<li>Run this command:\n<p class=\"cli\" style=\"white-space: nowrap; overflow: auto;\">zgrep &#8220;Jan\/2013&#8243; \/home\/userna5\/logs\/example.com-Jan-2013.gz | awk -F&#8221; &#8216;{print $4}&#8217; | sort | uniq -c | sort -n<\/p>\n<p>This will spit back info like this:<\/p>\n<p class=\"cli\">219 https:\/\/example.com\/prestashop\/index.php<br \/>\n337 https:\/\/example.com\/list\/admin\/<br \/>\n2009 https:\/\/example.com\/<br \/>\n2522 https:\/\/example.com\/opencart\/<\/p>\n<\/li>\n<\/ol>\n<p style=\"margin-top: 15px;\">You should now fully understand how you can parse your archived raw access logs on your server to get a better understanding of requests that have been going on, possibly causing server usage issues.<\/p>\n<p>You might also be interested in reading my article about <a href=\"\/support\/website\/block-unwanted-users-from-your-site-using-htaccess\/\" target=\"_blank\" rel=\"noopener\">blocking unwanted users from your site using .htaccess<\/a> for an in-depth explanation on how you could block any users that are causing an excessive amount of requests to your sites.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Navigation: View archived logs Parse IPs Parse User-Agents Parse URLs Parse referrers In this article I&#8217;m going to teach you how to parse archived raw access logs from your cPanel VPS (Virtual Private Server) or dedicated server. Reviewing requests from your archived raw access logs can help bring to light a common problematic request or<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[51],"tags":[],"class_list":["post-561","post","type-post","status-publish","format-standard","hentry","category-cpanel"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Parse archived raw access logs from cPanel | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article I&#039;m going to teach you how to parse archived raw access logs from your cPanel VPS (Virtual Private Server) or dedicated server. Reviewing requests from your archived raw access logs can help bring to light a common problematic request or user causing server issues that you might not have been able to catch otherwise.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Parse archived raw access logs from cPanel | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article I&#039;m going to teach you how to parse archived raw access logs from your cPanel VPS (Virtual Private Server) or dedicated server. Reviewing requests from your archived raw access logs can help bring to light a common problematic request or user causing server issues that you might not have been able to catch otherwise.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-02-08T02:49:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:21:38+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Parse archived raw access logs from cPanel\",\"datePublished\":\"2013-02-08T02:49:35+00:00\",\"dateModified\":\"2021-08-17T03:21:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/\"},\"wordCount\":799,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"cPanel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/\",\"name\":\"Parse archived raw access logs from cPanel | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2013-02-08T02:49:35+00:00\",\"dateModified\":\"2021-08-17T03:21:38+00:00\",\"description\":\"In this article I'm going to teach you how to parse archived raw access logs from your cPanel VPS (Virtual Private Server) or dedicated server. Reviewing requests from your archived raw access logs can help bring to light a common problematic request or user causing server issues that you might not have been able to catch otherwise.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Parse archived raw access logs from cPanel\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Parse archived raw access logs from cPanel | InMotion Hosting","description":"In this article I'm going to teach you how to parse archived raw access logs from your cPanel VPS (Virtual Private Server) or dedicated server. Reviewing requests from your archived raw access logs can help bring to light a common problematic request or user causing server issues that you might not have been able to catch otherwise.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/","og_locale":"en_US","og_type":"article","og_title":"Parse archived raw access logs from cPanel | InMotion Hosting","og_description":"In this article I'm going to teach you how to parse archived raw access logs from your cPanel VPS (Virtual Private Server) or dedicated server. Reviewing requests from your archived raw access logs can help bring to light a common problematic request or user causing server issues that you might not have been able to catch otherwise.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-02-08T02:49:35+00:00","article_modified_time":"2021-08-17T03:21:38+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Parse archived raw access logs from cPanel","datePublished":"2013-02-08T02:49:35+00:00","dateModified":"2021-08-17T03:21:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/"},"wordCount":799,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["cPanel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/","name":"Parse archived raw access logs from cPanel | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2013-02-08T02:49:35+00:00","dateModified":"2021-08-17T03:21:38+00:00","description":"In this article I'm going to teach you how to parse archived raw access logs from your cPanel VPS (Virtual Private Server) or dedicated server. Reviewing requests from your archived raw access logs can help bring to light a common problematic request or user causing server issues that you might not have been able to catch otherwise.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/parse-archived-raw-access-logs-from-cpanel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Parse archived raw access logs from cPanel"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/561","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=561"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/561\/revisions"}],"predecessor-version":[{"id":84971,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/561\/revisions\/84971"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=561"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=561"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=561"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}