{"id":16578,"date":"2024-02-22T18:31:02","date_gmt":"2024-02-22T15:31:02","guid":{"rendered":"https:\/\/unihost.com\/help\/?p=16578"},"modified":"2026-08-17T12:31:40","modified_gmt":"2026-08-17T09:31:40","slug":"understanding-cpu-benchmarking","status":"publish","type":"post","link":"https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/","title":{"rendered":"Unveiling the Power Within: Understanding CPU Benchmarking"},"content":{"rendered":"<p><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">CPU benchmarking means running a standardised test that measures how fast a processor completes a defined workload, so you can compare CPUs objectively instead of guessing from clock speeds and core counts alone. For servers, benchmarking answers a practical question: will this CPU handle my workload, and how does it compare to what I have now? Two CPUs with the same core count and clock speed can perform very differently once you actually test them.<\/span><\/p>\n<h2><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\"><b>Why CPU Benchmarking Matters for Servers<\/b><\/span><\/h2>\n<p><span style=\"font-weight: 400; font-size: 12pt; font-family: Ubuntu, sans-serif;\">Clock speed and core count only tell part of the story. Architecture, cache size, memory bandwidth, and instructions-per-clock all affect real performance. A benchmark runs the same workload on each CPU and gives you a comparable score. That lets you right-size a server &#8211; paying for cores you&#8217;ll actually use &#8211; and verify that an upgrade delivers the improvement you expected.<\/span><\/p>\n<h2><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\"><b>Single-Core vs Multi-Core Performance<\/b><\/span><\/h2>\n<p><span style=\"font-weight: 400; font-size: 12pt; font-family: Ubuntu, sans-serif;\">Benchmarks report two figures that matter for different workloads. Single-core score reflects how fast one core is &#8211; critical for tasks that run on a single thread, like many game servers, some databases, and PHP request handling. Multi-core score reflects total throughput across all cores &#8211; critical for parallel workloads like video encoding, compiling, and heavy virtualization. Match the score to your workload: a fast single-core CPU beats a many-core CPU for single-threaded tasks, and vice versa.<\/span><\/p>\n<h2><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\"><b>Common CPU Benchmark Tools<\/b><\/span><\/h2>\n<table style=\"width: 100%; border-collapse: collapse; font-family: Ubuntu, Arial, sans-serif; font-size: 14px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08);\">\n<thead>\n<tr style=\"background-color: #2c5aa0; color: #ffffff;\">\n<th style=\"padding: 12px 16px; text-align: left; font-weight: 600;\">Tool<\/th>\n<th style=\"padding: 12px 16px; text-align: left; font-weight: 600;\">Platform<\/th>\n<th style=\"padding: 12px 16px; text-align: left; font-weight: 600;\">Best for<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr style=\"background-color: #f0f4f8;\">\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">sysbench<\/td>\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">Linux<\/td>\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">Quick CPU\/memory tests on servers<\/td>\n<\/tr>\n<tr style=\"background-color: #ffffff;\">\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">Geekbench<\/td>\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">Cross-platform<\/td>\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">Single &amp; multi-core comparison scores<\/td>\n<\/tr>\n<tr style=\"background-color: #f0f4f8;\">\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">Phoronix Test Suite<\/td>\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">Linux<\/td>\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">Comprehensive automated benchmarks<\/td>\n<\/tr>\n<tr style=\"background-color: #ffffff;\">\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">stress-ng<\/td>\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">Linux<\/td>\n<td style=\"padding: 11px 16px; border-bottom: 1px solid #e0e6ed;\">Stress testing &amp; stability under load<\/td>\n<\/tr>\n<tr style=\"background-color: #f0f4f8;\">\n<td style=\"padding: 11px 16px;\">7-Zip benchmark<\/td>\n<td style=\"padding: 11px 16px;\">Cross-platform<\/td>\n<td style=\"padding: 11px 16px;\">Real-world compression performance<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\"><b>How to Run a Quick CPU Test with sysbench<\/b><\/span><\/h2>\n<p><span style=\"font-weight: 400; font-size: 12pt; font-family: Ubuntu, sans-serif;\">On a Linux server, sysbench gives a fast, repeatable CPU number. Install and run it:<\/span><\/p>\n<pre><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\"># Debian\/Ubuntu:<\/span>\r\n<span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">sudo apt install sysbench -y<\/span>\r\n<span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\"># RHEL\/AlmaLinux\/Rocky:<\/span>\r\n<span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">sudo dnf install sysbench -y<\/span>\r\n\r\n<span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\"># run the CPU test:<\/span>\r\n<span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">sysbench cpu --cpu-max-prime=20000 --threads=$(nproc) run<\/span><\/pre>\n<p><span style=\"font-weight: 400; font-size: 12pt; font-family: Ubuntu, sans-serif;\">The key result is &#8220;events per second&#8221; &#8211; higher is better. Run the same command on two servers to compare them directly. Use &#8211;threads=1 to measure single-core performance, or $(nproc) to use all cores for a multi-core figure.<\/span><\/p>\n<h2><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\"><b>Interpreting the Results<\/b><\/span><\/h2>\n<p><span style=\"font-weight: 400; font-size: 12pt; font-family: Ubuntu, sans-serif;\">Benchmarks are only meaningful in comparison. A score on its own means little; the same test on your current server versus a candidate server tells you the real difference. Run each test a few times and take the average, and make sure the server is otherwise idle so background load doesn&#8217;t skew the numbers.<\/span><\/p>\n<h2><strong><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">FAQ<\/span><\/strong><\/h2>\n<p><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">Q: What is CPU benchmarking? &#8211; Running a standardised test that measures how quickly a processor completes a set workload, producing a comparable score so you can evaluate CPUs objectively.<\/span><\/p>\n<p><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">Q: What&#8217;s the difference between single-core and multi-core scores? &#8211; Single-core measures the speed of one core (important for single-threaded tasks); multi-core measures combined throughput across all cores (important for parallel workloads).<\/span><\/p>\n<p><span style=\"font-size: 12pt; font-family: Ubuntu, sans-serif;\">Q: How do I benchmark a Linux server CPU? &#8211; Install sysbench and run sysbench cpu &#8211;cpu-max-prime=20000 &#8211;threads=$(nproc) run. Compare the events-per-second figure against another server.<\/span><script type=\"application\/ld+json\">\n{\n  \"@context\":\"https:\/\/schema.org\",\"@type\":\"FAQPage\",\n  \"mainEntity\":[\n    {\"@type\":\"Question\",\"name\":\"What is CPU benchmarking?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"CPU benchmarking is running a standardised test that measures how quickly a processor completes a set workload, producing a comparable score so you can evaluate CPUs objectively.\"}},\n    {\"@type\":\"Question\",\"name\":\"What's the difference between single-core and multi-core scores?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Single-core measures the speed of one core, which matters for single-threaded tasks, while multi-core measures combined throughput across all cores, which matters for parallel workloads.\"}},\n    {\"@type\":\"Question\",\"name\":\"How do I benchmark a Linux server CPU?\",\"acceptedAnswer\":{\"@type\":\"Answer\",\"text\":\"Install sysbench and run sysbench cpu --cpu-max-prime=20000 --threads=$(nproc) run, then compare the events-per-second figure against another server.\"}}\n  ]\n}\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>CPU benchmarking means running a standardised test that measures how fast a processor completes a defined workload, so you can compare CPUs objectively instead of guessing from clock speeds and core counts alone. For servers, benchmarking answers a practical question: will this CPU handle my workload, and how does it compare to what I have [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[158],"tags":[916,915,520],"class_list":["post-16578","post","type-post","status-publish","format-standard","hentry","category-dedicated-servers","tag-benchmark","tag-cpu","tag-dedicated-servers"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CPU Benchmarking Explained: Tools &amp; How to Test a Server CPU<\/title>\n<meta name=\"description\" content=\"What CPU benchmarking is, why it matters for servers, single-core vs multi-core, the main benchmark tools, and how to run a quick sysbench CPU test on Linux.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CPU Benchmarking Explained: Tools &amp; How to Test a Server CPU\" \/>\n<meta property=\"og:description\" content=\"What CPU benchmarking is, why it matters for servers, single-core vs multi-core, the main benchmark tools, and how to run a quick sysbench CPU test on Linux.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/\" \/>\n<meta property=\"og:site_name\" content=\"Unihost.FAQ\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/unihost\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-22T15:31:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-17T09:31:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/unihost.com\/help\/minio.php?.\/unihost-logo-alt.png\" \/>\n\t<meta property=\"og:image:width\" content=\"250\" \/>\n\t<meta property=\"og:image:height\" content=\"141\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Unihost Support\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@unihost\" \/>\n<meta name=\"twitter:site\" content=\"@unihost\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Unihost Support\" \/>\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:\\\/\\\/unihost.com\\\/help\\\/understanding-cpu-benchmarking\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/understanding-cpu-benchmarking\\\/\"},\"author\":{\"name\":\"Unihost Support\",\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/#\\\/schema\\\/person\\\/bb5ae95f38577c920e6a7507888b715a\"},\"headline\":\"Unveiling the Power Within: Understanding CPU Benchmarking\",\"datePublished\":\"2024-02-22T15:31:02+00:00\",\"dateModified\":\"2026-08-17T09:31:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/understanding-cpu-benchmarking\\\/\"},\"wordCount\":486,\"publisher\":{\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/#organization\"},\"keywords\":[\"benchmark\",\"cpu\",\"dedicated servers\"],\"articleSection\":[\"02. Dedicated servers\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/understanding-cpu-benchmarking\\\/\",\"url\":\"https:\\\/\\\/unihost.com\\\/help\\\/understanding-cpu-benchmarking\\\/\",\"name\":\"CPU Benchmarking Explained: Tools & How to Test a Server CPU\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/#website\"},\"datePublished\":\"2024-02-22T15:31:02+00:00\",\"dateModified\":\"2026-08-17T09:31:40+00:00\",\"description\":\"What CPU benchmarking is, why it matters for servers, single-core vs multi-core, the main benchmark tools, and how to run a quick sysbench CPU test on Linux.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/understanding-cpu-benchmarking\\\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/unihost.com\\\/help\\\/understanding-cpu-benchmarking\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/understanding-cpu-benchmarking\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Unihost\",\"item\":\"https:\\\/\\\/unihost.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Help\",\"item\":\"https:\\\/\\\/unihost.com\\\/help\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Unveiling the Power Within: Understanding CPU Benchmarking\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/#website\",\"url\":\"https:\\\/\\\/unihost.com\\\/help\\\/\",\"name\":\"Unihost.FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/unihost.com\\\/help\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/#organization\",\"name\":\"Unihost\",\"alternateName\":\"Unihost\",\"url\":\"https:\\\/\\\/unihost.com\\\/help\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/unihost.com\\\/help\\\/minio.php?2026\\\/01\\\/minio.png\",\"contentUrl\":\"https:\\\/\\\/unihost.com\\\/help\\\/minio.php?2026\\\/01\\\/minio.png\",\"width\":300,\"height\":300,\"caption\":\"Unihost\"},\"image\":{\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/unihost\\\/\",\"https:\\\/\\\/x.com\\\/unihost\",\"https:\\\/\\\/www.instagram.com\\\/unihost\\\/?hl=en\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/unihost-com\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCITKsxMDnslQY8brN3advgw\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/unihost.com\\\/help\\\/#\\\/schema\\\/person\\\/bb5ae95f38577c920e6a7507888b715a\",\"name\":\"Unihost Support\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g\",\"caption\":\"Unihost Support\"},\"sameAs\":[\"https:\\\/\\\/unihost.com\\\/\"],\"url\":\"https:\\\/\\\/unihost.com\\\/help\\\/author\\\/support\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CPU Benchmarking Explained: Tools & How to Test a Server CPU","description":"What CPU benchmarking is, why it matters for servers, single-core vs multi-core, the main benchmark tools, and how to run a quick sysbench CPU test on Linux.","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:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/","og_locale":"en_US","og_type":"article","og_title":"CPU Benchmarking Explained: Tools & How to Test a Server CPU","og_description":"What CPU benchmarking is, why it matters for servers, single-core vs multi-core, the main benchmark tools, and how to run a quick sysbench CPU test on Linux.","og_url":"https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/","og_site_name":"Unihost.FAQ","article_publisher":"https:\/\/www.facebook.com\/unihost\/","article_published_time":"2024-02-22T15:31:02+00:00","article_modified_time":"2026-08-17T09:31:40+00:00","og_image":[{"width":250,"height":141,"url":"https:\/\/unihost.com\/help\/minio.php?.\/unihost-logo-alt.png","type":"image\/png"}],"author":"Unihost Support","twitter_card":"summary_large_image","twitter_creator":"@unihost","twitter_site":"@unihost","twitter_misc":{"Written by":"Unihost Support","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/#article","isPartOf":{"@id":"https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/"},"author":{"name":"Unihost Support","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a"},"headline":"Unveiling the Power Within: Understanding CPU Benchmarking","datePublished":"2024-02-22T15:31:02+00:00","dateModified":"2026-08-17T09:31:40+00:00","mainEntityOfPage":{"@id":"https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/"},"wordCount":486,"publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"keywords":["benchmark","cpu","dedicated servers"],"articleSection":["02. Dedicated servers"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/","url":"https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/","name":"CPU Benchmarking Explained: Tools & How to Test a Server CPU","isPartOf":{"@id":"https:\/\/unihost.com\/help\/#website"},"datePublished":"2024-02-22T15:31:02+00:00","dateModified":"2026-08-17T09:31:40+00:00","description":"What CPU benchmarking is, why it matters for servers, single-core vs multi-core, the main benchmark tools, and how to run a quick sysbench CPU test on Linux.","breadcrumb":{"@id":"https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/unihost.com\/help\/understanding-cpu-benchmarking\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Unihost","item":"https:\/\/unihost.com\/"},{"@type":"ListItem","position":2,"name":"Help","item":"https:\/\/unihost.com\/help\/"},{"@type":"ListItem","position":3,"name":"Unveiling the Power Within: Understanding CPU Benchmarking"}]},{"@type":"WebSite","@id":"https:\/\/unihost.com\/help\/#website","url":"https:\/\/unihost.com\/help\/","name":"Unihost.FAQ","description":"","publisher":{"@id":"https:\/\/unihost.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/unihost.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/unihost.com\/help\/#organization","name":"Unihost","alternateName":"Unihost","url":"https:\/\/unihost.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","contentUrl":"https:\/\/unihost.com\/help\/minio.php?2026\/01\/minio.png","width":300,"height":300,"caption":"Unihost"},"image":{"@id":"https:\/\/unihost.com\/help\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/unihost\/","https:\/\/x.com\/unihost","https:\/\/www.instagram.com\/unihost\/?hl=en","https:\/\/www.linkedin.com\/company\/unihost-com","https:\/\/www.youtube.com\/channel\/UCITKsxMDnslQY8brN3advgw"]},{"@type":"Person","@id":"https:\/\/unihost.com\/help\/#\/schema\/person\/bb5ae95f38577c920e6a7507888b715a","name":"Unihost Support","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a0c9db17c2a0d93e8a0d5ac123f8c5db750ad4d3d5657369c0c4e480f5af77b8?s=96&d=mm&r=g","caption":"Unihost Support"},"sameAs":["https:\/\/unihost.com\/"],"url":"https:\/\/unihost.com\/help\/author\/support\/"}]}},"_links":{"self":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/16578","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/comments?post=16578"}],"version-history":[{"count":15,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/16578\/revisions"}],"predecessor-version":[{"id":20452,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/posts\/16578\/revisions\/20452"}],"wp:attachment":[{"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/media?parent=16578"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/categories?post=16578"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unihost.com\/help\/wp-json\/wp\/v2\/tags?post=16578"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}