{"id":1548,"date":"2022-07-13T00:12:31","date_gmt":"2022-07-13T00:12:31","guid":{"rendered":"https:\/\/pheonixsolutions.com\/knowledge-base\/?p=1548"},"modified":"2022-07-13T00:35:38","modified_gmt":"2022-07-13T00:35:38","slug":"how-to-find-and-stop-multiple-processes-by-a-user","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/","title":{"rendered":"How to find and stop multiple processes by a user"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Introduction<\/h3>\n\n\n\n<p>Sometimes it becomes necessary to stop processes run by a user, whether for troubleshooting or due to overwhelming resource usage. The following guide will assist in finding and stopping multiple processes.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Procedure<\/h3>\n\n\n\n<p>First, find the processes you&#8217;re interested in stopping. The ps utility can list running processes, and grep can be used to filter the output. Here, I am searching for all processes by a user. In this guide, I&#8217;ll be using the user&nbsp;<em><strong>cptest<\/strong><\/em>&nbsp;and the process&nbsp;<em><strong>sleep<\/strong><\/em><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"907\" height=\"534\" src=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-8.png\" alt=\"\" class=\"wp-image-1549\" srcset=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-8.png 907w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-8-300x177.png 300w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-8-768x452.png 768w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-8-150x88.png 150w\" sizes=\"auto, (max-width: 907px) 100vw, 907px\" \/><\/figure>\n\n\n\n<p>But, if you notice, there is an extra process in that list that is not from that user. This is the search query you&#8217;ve just made. If you leave it in, you&#8217;ll get a warning about that process not existing further in the guide. It is simply a warning, but it is also easy to remove.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"880\" height=\"54\" src=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-9.png\" alt=\"\" class=\"wp-image-1550\" srcset=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-9.png 880w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-9-300x18.png 300w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-9-768x47.png 768w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-9-150x9.png 150w\" sizes=\"auto, (max-width: 880px) 100vw, 880px\" \/><\/figure>\n\n\n\n<p>To remove this entry, format your first search like this, surrounding the query in single quotes, and the first letter in square brackets:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"793\" height=\"498\" src=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-10.png\" alt=\"\" class=\"wp-image-1551\" srcset=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-10.png 793w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-10-300x188.png 300w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-10-768x482.png 768w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-10-150x94.png 150w\" sizes=\"auto, (max-width: 793px) 100vw, 793px\" \/><\/figure>\n\n\n\n<p>You can then filter this further. In my case, I only have one type of process running under this user, but the syntax is as follows:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"823\" height=\"487\" src=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-11.png\" alt=\"\" class=\"wp-image-1552\" srcset=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-11.png 823w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-11-300x178.png 300w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-11-768x454.png 768w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-11-150x89.png 150w\" sizes=\"auto, (max-width: 823px) 100vw, 823px\" \/><\/figure>\n\n\n\n<p>As you can see, the special formatting is not needed for subsequent filters.<\/p>\n\n\n\n<p>The kill utility uses the Process Identifier or PID to identify what processes it is going to stop. You can use awk to filter for it from the second column:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"697\" height=\"506\" src=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-12.png\" alt=\"\" class=\"wp-image-1553\" srcset=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-12.png 697w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-12-300x218.png 300w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-12-150x109.png 150w\" sizes=\"auto, (max-width: 697px) 100vw, 697px\" \/><\/figure>\n\n\n\n<p>You can use the following syntax to place the output of a command in-line with the arguments for another command:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"313\" height=\"54\" src=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-13.png\" alt=\"\" class=\"wp-image-1554\" srcset=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-13.png 313w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-13-300x52.png 300w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-13-150x26.png 150w\" sizes=\"auto, (max-width: 313px) 100vw, 313px\" \/><\/figure>\n\n\n\n<p>We&#8217;re going to use this feature to feed the PID list we found to the kill utility:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"789\" height=\"56\" src=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-14.png\" alt=\"\" class=\"wp-image-1555\" srcset=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-14.png 789w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-14-300x21.png 300w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-14-768x55.png 768w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-14-150x11.png 150w\" sizes=\"auto, (max-width: 789px) 100vw, 789px\" \/><\/figure>\n\n\n\n<p>You should now see the processes are no longer running:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"467\" height=\"84\" src=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-15.png\" alt=\"\" class=\"wp-image-1556\" srcset=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-15.png 467w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-15-300x54.png 300w, https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-15-150x27.png 150w\" sizes=\"auto, (max-width: 467px) 100vw, 467px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Sometimes it becomes necessary to stop processes run by a user, whether for troubleshooting or due to overwhelming resource usage. The following guide will assist in finding and stopping multiple processes. Procedure First, find the processes you&#8217;re interested in stopping. The ps utility can list running processes, and grep can be used to filter ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[33],"tags":[5],"class_list":["post-1548","post","type-post","status-publish","format-standard","hentry","category-whm","tag-cpanel"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to find and stop multiple processes by a user - PheonixSolutions Knowledge-Base<\/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\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to find and stop multiple processes by a user - PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"og:description\" content=\"Introduction Sometimes it becomes necessary to stop processes run by a user, whether for troubleshooting or due to overwhelming resource usage. The following guide will assist in finding and stopping multiple processes. Procedure First, find the processes you&#8217;re interested in stopping. The ps utility can list running processes, and grep can be used to filter ..Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/\" \/>\n<meta property=\"og:site_name\" content=\"PheonixSolutions Knowledge-Base\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-13T00:12:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-13T00:35:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-8.png\" \/>\n<meta name=\"author\" content=\"vijender\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"vijender\" \/>\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\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/\"},\"author\":{\"name\":\"vijender\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/7e483f3adf4e0c18f959adcaf9ea3f3d\"},\"headline\":\"How to find and stop multiple processes by a user\",\"datePublished\":\"2022-07-13T00:12:31+00:00\",\"dateModified\":\"2022-07-13T00:35:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/\"},\"wordCount\":293,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-8.png\",\"keywords\":[\"cPanel\"],\"articleSection\":[\"WHM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/\",\"name\":\"How to find and stop multiple processes by a user - PheonixSolutions Knowledge-Base\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-8.png\",\"datePublished\":\"2022-07-13T00:12:31+00:00\",\"dateModified\":\"2022-07-13T00:35:38+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/7e483f3adf4e0c18f959adcaf9ea3f3d\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/#primaryimage\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-8.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/image-8.png\",\"width\":907,\"height\":534},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/2022\\\/07\\\/13\\\/how-to-find-and-stop-multiple-processes-by-a-user\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to find and stop multiple processes by a user\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/\",\"name\":\"PheonixSolutions Knowledge-Base\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/#\\\/schema\\\/person\\\/7e483f3adf4e0c18f959adcaf9ea3f3d\",\"name\":\"vijender\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/29c5aebbdf439bbeaeea52d1cf1a0166768889fd6238deb28b6851eebb2cfb32?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/29c5aebbdf439bbeaeea52d1cf1a0166768889fd6238deb28b6851eebb2cfb32?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/29c5aebbdf439bbeaeea52d1cf1a0166768889fd6238deb28b6851eebb2cfb32?s=96&d=mm&r=g\",\"caption\":\"vijender\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/knowledge-base\\\/author\\\/vijender\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to find and stop multiple processes by a user - PheonixSolutions Knowledge-Base","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\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/","og_locale":"en_US","og_type":"article","og_title":"How to find and stop multiple processes by a user - PheonixSolutions Knowledge-Base","og_description":"Introduction Sometimes it becomes necessary to stop processes run by a user, whether for troubleshooting or due to overwhelming resource usage. The following guide will assist in finding and stopping multiple processes. Procedure First, find the processes you&#8217;re interested in stopping. The ps utility can list running processes, and grep can be used to filter ..Read more","og_url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/","og_site_name":"PheonixSolutions Knowledge-Base","article_published_time":"2022-07-13T00:12:31+00:00","article_modified_time":"2022-07-13T00:35:38+00:00","og_image":[{"url":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-8.png","type":"","width":"","height":""}],"author":"vijender","twitter_card":"summary_large_image","twitter_misc":{"Written by":"vijender","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/"},"author":{"name":"vijender","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/7e483f3adf4e0c18f959adcaf9ea3f3d"},"headline":"How to find and stop multiple processes by a user","datePublished":"2022-07-13T00:12:31+00:00","dateModified":"2022-07-13T00:35:38+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/"},"wordCount":293,"commentCount":0,"image":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-8.png","keywords":["cPanel"],"articleSection":["WHM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/","name":"How to find and stop multiple processes by a user - PheonixSolutions Knowledge-Base","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-8.png","datePublished":"2022-07-13T00:12:31+00:00","dateModified":"2022-07-13T00:35:38+00:00","author":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/7e483f3adf4e0c18f959adcaf9ea3f3d"},"breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/#primaryimage","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-8.png","contentUrl":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-content\/uploads\/2022\/07\/image-8.png","width":907,"height":534},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/2022\/07\/13\/how-to-find-and-stop-multiple-processes-by-a-user\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/knowledge-base\/"},{"@type":"ListItem","position":2,"name":"How to find and stop multiple processes by a user"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#website","url":"https:\/\/pheonixsolutions.com\/knowledge-base\/","name":"PheonixSolutions Knowledge-Base","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/knowledge-base\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/knowledge-base\/#\/schema\/person\/7e483f3adf4e0c18f959adcaf9ea3f3d","name":"vijender","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/29c5aebbdf439bbeaeea52d1cf1a0166768889fd6238deb28b6851eebb2cfb32?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/29c5aebbdf439bbeaeea52d1cf1a0166768889fd6238deb28b6851eebb2cfb32?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/29c5aebbdf439bbeaeea52d1cf1a0166768889fd6238deb28b6851eebb2cfb32?s=96&d=mm&r=g","caption":"vijender"},"url":"https:\/\/pheonixsolutions.com\/knowledge-base\/author\/vijender\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1548","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/comments?post=1548"}],"version-history":[{"count":2,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1548\/revisions"}],"predecessor-version":[{"id":1558,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/posts\/1548\/revisions\/1558"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/media?parent=1548"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/categories?post=1548"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/knowledge-base\/wp-json\/wp\/v2\/tags?post=1548"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}