{"id":2030,"date":"2024-11-05T02:27:32","date_gmt":"2022-11-15T15:47:36","guid":{"rendered":""},"modified":"2025-08-13T11:56:11","modified_gmt":"2025-08-13T10:56:11","slug":"how-to-install-grafana-and-prometheus-on-ubuntu-24-04-2","status":"publish","type":"post","link":"https:\/\/netcloud24.com\/knowledgebase\/how-to-install-grafana-and-prometheus-on-ubuntu-24-04-2\/","title":{"rendered":"Linux VPS &#038; VPS Windows Setup Guide | NetCloud24 Grafana and Prometheus on Ubuntu 24.04"},"content":{"rendered":"<p>&nbsp;<\/p>\n<style>\n        body {<br \/>\n            font-family: Arial, sans-serif;<br \/>\n            line-height: 1.6;<br \/>\n            margin: 20px;<br \/>\n            background-color: #f9f9f9;<br \/>\n        }<br \/>\n        h1, h2, h3 {<br \/>\n            color: #333;<br \/>\n        }<br \/>\n        code {<br \/>\n            background: #e8ecef;<br \/>\n            padding: 2px 4px;<br \/>\n            border-radius: 4px;<br \/>\n        }<br \/>\n        pre {<br \/>\n            background: #e8ecef;<br \/>\n            padding: 10px;<br \/>\n            border-left: 5px solid #007bff;<br \/>\n            overflow-x: auto;<br \/>\n            border-radius: 4px;<br \/>\n        }<br \/>\n        ul, ol {<br \/>\n            margin-left: 20px;<br \/>\n        }<br \/>\n        table {<br \/>\n            border-collapse: collapse;<br \/>\n            width: 100%;<br \/>\n            margin: 20px 0;<br \/>\n        }<br \/>\n        th, td {<br \/>\n            border: 1px solid #ddd;<br \/>\n            padding: 10px;<br \/>\n            text-align: left;<br \/>\n        }<br \/>\n        th {<br \/>\n            background-color: #007bff;<br \/>\n            color: white;<br \/>\n        }<br \/>\n        .container {<br \/>\n            max-width: 900px;<br \/>\n            margin: auto;<br \/>\n        }<br \/>\n        .note {<br \/>\n            background: #fff3cd;<br \/>\n            padding: 10px;<br \/>\n            border-left: 5px solid #856404;<br \/>\n            margin: 10px 0;<br \/>\n        }<br \/>\n        .promotion {<br \/>\n            background: #d4edda;<br \/>\n            padding: 15px;<br \/>\n            border-left: 5px solid #155724;<br \/>\n            margin: 20px 0;<br \/>\n        }<br \/>\n        .promotion a {<br \/>\n            color: #007bff;<br \/>\n            text-decoration: none;<br \/>\n        }<br \/>\n        .promotion a:hover {<br \/>\n            text-decoration: underline;<br \/>\n        }<br \/>\n    <\/style>\n<p>&nbsp;<\/p>\n<div class=\"container\">\n<h1>Install and Configure Grafana and Prometheus on Windows VPS<\/h1>\n<p>This guide provides a detailed setup for installing and configuring Grafana and Prometheus on a Windows VPS running Ubuntu 24.04, Debian 12, CentOS 9 Stream, or AlmaLinux 9. It includes Node Exporter for system metrics, Nginx as a reverse proxy for Grafana, and secure configuration practices. For reliable VPS hosting, explore <a href=\"https:\/\/ie.netcloud24.com\">Netcloud24<\/a>.<\/p>\n<p>Author: \u0141ukasz Bodziony | Website: <a href=\"https:\/\/ca.netcloud24.com\">Windows VPS<\/a><\/p>\n<h2>Prerequisites<\/h2>\n<ul>\n<li>Windows VPS with root or sudo access.<\/li>\n<li>Minimum 2GB RAM, 10GB disk space, and 2 CPU cores.<\/li>\n<li>SSH client (e.g., PuTTY or <code>ssh<\/code>) for remote access.<\/li>\n<li>Basic Linux command-line knowledge.<\/li>\n<li>Ports required: 9090 (Prometheus), 9100 (Node Exporter), 3000 (Grafana), 80\/443 (Nginx).<\/li>\n<li>Optional: Domain name for Grafana with SSL (recommended).<\/li>\n<\/ul>\n<div class=\"promotion\">\n<p><strong>Why Netcloud24?<\/strong> Netcloud24 offers high-performance VPS solutions with Intel Xeon Gold CPUs, NVMe SSDs, and 24\/7 support, perfect for hosting Grafana and Prometheus. Visit <a href=\"https:\/\/ie.netcloud24.com\">Netcloud24<\/a> for scalable plans starting at \u20ac92.24\/month.<\/p>\n<\/div>\n<h2>Distribution Comparison<\/h2>\n<table>\n<tbody>\n<tr>\n<th>Distribution<\/th>\n<th>Package Manager<\/th>\n<th>Firewall Tool<\/th>\n<\/tr>\n<tr>\n<td>Ubuntu 24.04<\/td>\n<td>apt<\/td>\n<td>ufw<\/td>\n<\/tr>\n<tr>\n<td>Debian 12<\/td>\n<td>apt<\/td>\n<td>ufw<\/td>\n<\/tr>\n<tr>\n<td>CentOS 9 Stream<\/td>\n<td>dnf<\/td>\n<td>firewalld<\/td>\n<\/tr>\n<tr>\n<td>AlmaLinux 9<\/td>\n<td>dnf<\/td>\n<td>firewalld<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Part 1: Install and Configure Prometheus<\/h2>\n<h3>1. Common Steps for All Distributions<\/h3>\n<ol>\n<li><strong>Update system:<\/strong>For Ubuntu\/Debian:\n<pre><code>sudo apt update &amp;&amp; sudo apt upgrade -y<\/code><\/pre>\n<p>For CentOS\/AlmaLinux:<\/p>\n<pre><code>sudo dnf update -y<\/code><\/pre>\n<\/li>\n<li><strong>Create Prometheus user and directories:<\/strong>\n<pre><code>sudo useradd --no-create-home --shell \/bin\/false prometheus\r\nsudo mkdir \/etc\/prometheus \/var\/lib\/prometheus\r\nsudo chown prometheus:prometheus \/var\/lib\/prometheus<\/code><\/pre>\n<\/li>\n<li><strong>Download Prometheus (use latest version, e.g., 2.55.0):<\/strong>For x86_64 systems:\n<pre><code>cd \/tmp\r\nwget https:\/\/github.com\/prometheus\/prometheus\/releases\/download\/v2.55.0\/prometheus-2.55.0.linux-amd64.tar.gz\r\ntar xvf prometheus-2.55.0.linux-amd64.tar.gz\r\ncd prometheus-2.55.0.linux-amd64<\/code><\/pre>\n<p>For ARM64, replace with <code>prometheus-2.55.0.linux-arm64.tar.gz<\/code>.<\/li>\n<li><strong>Move binaries and configs:<\/strong>\n<pre><code>sudo mv prometheus promtool \/usr\/local\/bin\/\r\nsudo mv consoles console_libraries prometheus.yml \/etc\/prometheus\/\r\nsudo chown -R prometheus:prometheus \/etc\/prometheus\r\nsudo chmod -R 775 \/etc\/prometheus<\/code><\/pre>\n<\/li>\n<li><strong>Configure Prometheus:<\/strong>Edit <code>\/etc\/prometheus\/prometheus.yml<\/code>:\n<pre><code>global:\r\n  scrape_interval: 15s\r\nscrape_configs:\r\n  - job_name: 'prometheus'\r\n    static_configs:\r\n      - targets: ['localhost:9090']\r\n  - job_name: 'node_exporter'\r\n    static_configs:\r\n      - targets: ['localhost:9100']<\/code><\/pre>\n<\/li>\n<li><strong>Create systemd service:<\/strong>\n<pre><code>sudo nano \/etc\/systemd\/system\/prometheus.service<\/code><\/pre>\n<p>Add:<\/p>\n<pre><code>[Unit]\r\nDescription=Prometheus Monitoring\r\nWants=network-online.target\r\nAfter=network-online.target\r\n\r\n[Service]\r\nUser=prometheus\r\nGroup=prometheus\r\nType=simple\r\nExecStart=\/usr\/local\/bin\/prometheus \\\r\n    --config.file=\/etc\/prometheus\/prometheus.yml \\\r\n    --storage.tsdb.path=\/var\/lib\/prometheus\/ \\\r\n    --web.console.templates=\/etc\/prometheus\/consoles \\\r\n    --web.console.libraries=\/etc\/prometheus\/console_libraries\r\n\r\n[Install]\r\nWantedBy=multi-user.target<\/code><\/pre>\n<\/li>\n<li><strong>Start and enable Prometheus:<\/strong>\n<pre><code>sudo systemctl daemon-reload\r\nsudo systemctl start prometheus\r\nsudo systemctl enable prometheus<\/code><\/pre>\n<\/li>\n<li><strong>Verify Prometheus:<\/strong>Access <code>http:\/\/your-vps-ip:9090<\/code> in a browser (temporary firewall rule required).<\/li>\n<\/ol>\n<h2>Part 2: Install and Configure Node Exporter<\/h2>\n<h3>1. Common Steps for All Distributions<\/h3>\n<ol>\n<li><strong>Create Node Exporter user:<\/strong>\n<pre><code>sudo useradd --no-create-home --shell \/bin\/false node_exporter<\/code><\/pre>\n<\/li>\n<li><strong>Download Node Exporter (e.g., version 1.8.2):<\/strong>For x86_64 systems:\n<pre><code>cd \/tmp\r\nwget https:\/\/github.com\/prometheus\/node_exporter\/releases\/download\/v1.8.2\/node_exporter-1.8.2.linux-amd64.tar.gz\r\ntar xvf node_exporter-1.8.2.linux-amd64.tar.gz\r\ncd node_exporter-1.8.2.linux-amd64<\/code><\/pre>\n<p>For ARM64, replace with <code>node_exporter-1.8.2.linux-arm64.tar.gz<\/code>.<\/li>\n<li><strong>Move binary:<\/strong>\n<pre><code>sudo mv node_exporter \/usr\/local\/bin\/\r\nsudo chown node_exporter:node_exporter \/usr\/local\/bin\/node_exporter<\/code><\/pre>\n<\/li>\n<li><strong>Create systemd service:<\/strong>\n<pre><code>sudo nano \/etc\/systemd\/system\/node_exporter.service<\/code><\/pre>\n<p>Add:<\/p>\n<pre><code>[Unit]\r\nDescription=Node Exporter\r\nWants=network-online.target\r\nAfter=network-online.target\r\n\r\n[Service]\r\nUser=node_exporter\r\nGroup=node_exporter\r\nType=simple\r\nExecStart=\/usr\/local\/bin\/node_exporter\r\n\r\n[Install]\r\nWantedBy=multi-user.target<\/code><\/pre>\n<\/li>\n<li><strong>Start and enable Node Exporter:<\/strong>\n<pre><code>sudo systemctl daemon-reload\r\nsudo systemctl start node_exporter\r\nsudo systemctl enable node_exporter<\/code><\/pre>\n<\/li>\n<li><strong>Verify Node Exporter:<\/strong>Access <code>http:\/\/your-vps-ip:9100\/metrics<\/code> to confirm metrics are available.<\/li>\n<\/ol>\n<h2>Part 3: Install and Configure Grafana<\/h2>\n<h3>1. Ubuntu 24.04<\/h3>\n<ol>\n<li><strong>Add Grafana repository:<\/strong>\n<pre><code>sudo apt-get install -y apt-transport-https software-properties-common\r\nwget -q -O - https:\/\/packages.grafana.com\/gpg.key | sudo apt-key add -\r\necho \"deb https:\/\/packages.grafana.com\/oss\/deb stable main\" | sudo tee \/etc\/apt\/sources.list.d\/grafana.list\r\nsudo apt update<\/code><\/pre>\n<\/li>\n<li><strong>Install Grafana:<\/strong>\n<pre><code>sudo apt install grafana -y<\/code><\/pre>\n<\/li>\n<li><strong>Start and enable Grafana:<\/strong>\n<pre><code>sudo systemctl start grafana-server\r\nsudo systemctl enable grafana-server<\/code><\/pre>\n<\/li>\n<li><strong>Verify Grafana:<\/strong>Access <code>http:\/\/your-vps-ip:3000<\/code> (default login: admin\/admin).<\/li>\n<\/ol>\n<h3>2. Debian 12<\/h3>\n<p>Follow Ubuntu 24.04 steps for Grafana installation and configuration.<\/p>\n<h3>3. CentOS 9 Stream \/ AlmaLinux 9<\/h3>\n<ol>\n<li><strong>Add Grafana repository:<\/strong>\n<pre><code>sudo nano \/etc\/yum.repos.d\/grafana.repo<\/code><\/pre>\n<p>Add:<\/p>\n<pre><code>[grafana]\r\nname=grafana\r\nbaseurl=https:\/\/packages.grafana.com\/oss\/rpm\r\nrepo_gpgcheck=1\r\ngpgcheck=1\r\ngpgkey=https:\/\/packages.grafana.com\/gpg.key\r\nenabled=1<\/code><\/pre>\n<\/li>\n<li><strong>Install Grafana:<\/strong>\n<pre><code>sudo dnf install grafana -y<\/code><\/pre>\n<\/li>\n<li><strong>Follow steps 3\u20134 from Ubuntu 24.04.<\/strong><\/li>\n<\/ol>\n<h2>Part 4: Configure Nginx as Reverse Proxy for Grafana<\/h2>\n<h3>1. Install Nginx<\/h3>\n<p>For Ubuntu\/Debian:<\/p>\n<pre><code>sudo apt install nginx -y<\/code><\/pre>\n<p>For CentOS\/AlmaLinux:<\/p>\n<pre><code>sudo dnf install nginx -y<\/code><\/pre>\n<h3>2. Configure Nginx<\/h3>\n<ol>\n<li><strong>Create Nginx configuration:<\/strong>\n<pre><code>sudo nano \/etc\/nginx\/sites-available\/grafana<\/code><\/pre>\n<p>Add (replace <code>your-domain.com<\/code> with your domain or VPS IP):<\/p>\n<pre><code>server {\r\n    listen 80;\r\n    server_name your-domain.com;\r\n\r\n    location \/ {\r\n        proxy_pass http:\/\/localhost:3000;\r\n        proxy_set_header Host $host;\r\n        proxy_set_header X-Real-IP $remote_addr;\r\n        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\r\n        proxy_set_header X-Forwarded-Proto $scheme;\r\n    }\r\n}<\/code><\/pre>\n<\/li>\n<li><strong>Enable configuration:<\/strong>\n<pre><code>sudo ln -s \/etc\/nginx\/sites-available\/grafana \/etc\/nginx\/sites-enabled\/\r\nsudo nginx -t\r\nsudo systemctl restart nginx<\/code><\/pre>\n<\/li>\n<li><strong>Install SSL (recommended):<\/strong>Use Certbot for Let\u2019s Encrypt:\n<p>For Ubuntu\/Debian:<\/p>\n<pre><code>sudo apt install certbot python3-certbot-nginx -y\r\nsudo certbot --nginx -d your-domain.com<\/code><\/pre>\n<p>For CentOS\/AlmaLinux:<\/p>\n<pre><code>sudo dnf install certbot python3-certbot-nginx -y\r\nsudo certbot --nginx -d your-domain.com<\/code><\/pre>\n<\/li>\n<\/ol>\n<h2>Part 5: Configure Grafana with Prometheus Data Source<\/h2>\n<ol>\n<li><strong>Log in to Grafana:<\/strong>Access <code>https:\/\/your-domain.com<\/code> or <code>http:\/\/your-vps-ip:3000<\/code>. Default credentials: admin\/admin (change password immediately).<\/li>\n<li><strong>Add Prometheus data source:<\/strong>Go to <code>Configuration &gt; Data Sources &gt; Add data source<\/code>, select Prometheus, set URL to <code>http:\/\/localhost:9090<\/code>, and save.<\/li>\n<li><strong>Create dashboard:<\/strong>Go to <code>Create &gt; Dashboard<\/code>, add panels, and use Node Exporter metrics (e.g., CPU usage, memory, disk I\/O). Import dashboard ID 1860 for a pre-built Node Exporter dashboard.<\/li>\n<\/ol>\n<h2>Part 6: Configure Firewall<\/h2>\n<h3>1. Ubuntu 24.04 \/ Debian 12<\/h3>\n<pre><code>sudo ufw allow 80\/tcp\r\nsudo ufw allow 443\/tcp\r\nsudo ufw reload<\/code><\/pre>\n<p class=\"note\">Note: Avoid opening ports 9090\/9100\/3000; use Nginx and SSH tunneling for secure access.<\/p>\n<h3>2. CentOS 9 Stream \/ AlmaLinux 9<\/h3>\n<pre><code>sudo firewall-cmd --permanent --add-port=80\/tcp\r\nsudo firewall-cmd --permanent --add-port=443\/tcp\r\nsudo firewall-cmd --reload<\/code><\/pre>\n<p class=\"note\">Note: Keep ports 9090\/9100\/3000 closed; rely on Nginx and SSH tunneling.<\/p>\n<h2>Netcloud24 Hosting Solutions<\/h2>\n<table>\n<tbody>\n<tr>\n<th>Plan<\/th>\n<th>Price (Monthly)<\/th>\n<th>vCPU<\/th>\n<th>RAM<\/th>\n<th>SSD<\/th>\n<th>RDS CALs<\/th>\n<\/tr>\n<tr>\n<td>RDS X1<\/td>\n<td>\u20ac92.24<\/td>\n<td>4<\/td>\n<td>8 GB<\/td>\n<td>100 GiB NVMe<\/td>\n<td>5<\/td>\n<\/tr>\n<tr>\n<td>RDS X2<\/td>\n<td>\u20ac179.57<\/td>\n<td>8<\/td>\n<td>16 GB<\/td>\n<td>200 GiB NVMe<\/td>\n<td>5<\/td>\n<\/tr>\n<tr>\n<td>RDS X3<\/td>\n<td>\u20ac275.52<\/td>\n<td>8<\/td>\n<td>32 GB<\/td>\n<td>400 GiB NVMe<\/td>\n<td>10<\/td>\n<\/tr>\n<tr>\n<td>RDS X4<\/td>\n<td>\u20ac405.89<\/td>\n<td>8<\/td>\n<td>64 GB<\/td>\n<td>1 TB NVMe<\/td>\n<td>25<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<div class=\"promotion\">\n<p><strong>Netcloud24 Benefits:<\/strong> Host your monitoring stack with Netcloud24\u2019s high-performance VPS, featuring NVMe SSDs, Intel Xeon Gold CPUs, automated backups, VPN support, and 24\/7 technical support. Compliant with GDPR and KRI standards. Visit <a href=\"https:\/\/ie.netcloud24.com\">Netcloud24<\/a> for plans starting at \u20ac92.24\/month.<\/p>\n<\/div>\n<h2>Troubleshooting<\/h2>\n<ul>\n<li><strong>Prometheus not running:<\/strong> Check logs with <code>journalctl -u prometheus<\/code>. Verify <code>prometheus.yml<\/code> syntax.<\/li>\n<li><strong>Node Exporter no metrics:<\/strong> Ensure <code>node_exporter<\/code> service is running (<code>systemctl status node_exporter<\/code>).<\/li>\n<li><strong>Grafana inaccessible:<\/strong> Confirm Nginx configuration and firewall settings. Check <code>systemctl status grafana-server<\/code>.<\/li>\n<li><strong>Contact support:<\/strong> Reach out to <a href=\"https:\/\/ie.netcloud24.com\">Netcloud24<\/a> for assistance.<\/li>\n<\/ul>\n<h2>Security Recommendations<\/h2>\n<ul>\n<li>Use strong passwords for Grafana admin account.<\/li>\n<li>Enable SSL via Let\u2019s Encrypt for Grafana access.<\/li>\n<li>Restrict firewall to ports 80\/443 and SSH (22); use SSH tunneling for local access to Prometheus\/Node Exporter.<\/li>\n<li>Regularly update Prometheus, Node Exporter, and Grafana.<\/li>\n<li>Enable Netcloud24\u2019s VPN and firewall for additional security.<\/li>\n<\/ul>\n<footer>Guide created by \u0141ukasz Bodziony on August 13, 2025. Visit <a href=\"https:\/\/ca.netcloud24.com\">Windows VPS<\/a> for more resources. For reliable VPS hosting, explore <a href=\"https:\/\/ie.netcloud24.com\">Netcloud24<\/a>.<\/p>\n<\/footer>\n<\/div>\n<p>&nbsp;<\/p>\n<div class=\"post-author-box\" style=\"border-top:1px solid #ddd;margin-top:20px;padding-top:15px;\">\n<p><strong>Author:<\/strong> \u0141ukasz Bodziony<\/p>\n<p><strong>Website:<\/strong> <a href=\"https:\/\/ca.netcloud24.com\" target=\"_blank\" rel=\"dofollow\">Windows VPS<\/a><\/p>\n<p><em>\u0141ukasz Bodziony is the CEO and founder of <a href=\"https:\/\/netcloud24.com\" target=\"_blank\" rel=\"dofollow\">NETCLOUD24<\/a>, a global VPS hosting brand proudly originating from Poland. With extensive experience in cloud computing, virtualization, and server management, he delivers high-performance <strong>Windows VPS<\/strong> and <strong>Remote Desktop Services (RDS)<\/strong> solutions to clients across Europe, North America, and beyond.<\/em><\/p>\n<p><em>His expertise covers a wide range of technologies, including <strong>Microsoft Azure<\/strong>, <strong>Proxmox VE<\/strong>, <strong>Amazon Web Services (AWS)<\/strong>, and numerous other virtualization and cloud platforms.<\/em><\/p>\n<p><em>Beyond running his hosting business, \u0141ukasz also provides <strong>professional paid server configuration and optimization services<\/strong> for companies and individuals. Outside of work, he is dedicated to caring for his children and building a secure future for them.<\/em><\/p>\n<p><em>If you are interested in working with him or need expert assistance with your hosting, cloud environment, or server setup, feel free to reach out via <a href=\"https:\/\/ca.netcloud24.com\" target=\"_blank\" rel=\"dofollow\">Windows VPS<\/a>.<\/em><\/p>\n<\/p><\/div>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; &nbsp; Install and Configure Grafana and Prometheus on Windows VPS This guide provides a detailed setup for installing and configuring Grafana and Prometheus on a Windows VPS\u2026<\/p>\n","protected":false},"author":1,"featured_media":3421,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_seopress_robots_primary_cat":"","_seopress_titles_title":"","_seopress_titles_desc":"","_seopress_robots_index":"","footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[1],"tags":[14,12,11,23,20,21,22,17,7,8,6,10,18,19,15,24,16,5,13,9],"class_list":["post-2030","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","tag-cheapvps","tag-cloudvps","tag-hostingvps","tag-rds","tag-rdscal","tag-remotedesktop","tag-remotedesktopvps","tag-servervps","tag-ukvps","tag-virtualserver","tag-vpshosting","tag-vpsserver","tag-vpssolutions","tag-vpswindows","tag-vpswithwindows","tag-windowsrds","tag-windowsserver","tag-windowsvps","tag-windowsvpshosting","tag-windowsvpsuk"],"jetpack_publicize_connections":[],"_links":{"self":[{"href":"https:\/\/netcloud24.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/2030","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/netcloud24.com\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/netcloud24.com\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/netcloud24.com\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/netcloud24.com\/knowledgebase\/wp-json\/wp\/v2\/comments?post=2030"}],"version-history":[{"count":2,"href":"https:\/\/netcloud24.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/2030\/revisions"}],"predecessor-version":[{"id":4152,"href":"https:\/\/netcloud24.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/2030\/revisions\/4152"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/netcloud24.com\/knowledgebase\/wp-json\/wp\/v2\/media\/3421"}],"wp:attachment":[{"href":"https:\/\/netcloud24.com\/knowledgebase\/wp-json\/wp\/v2\/media?parent=2030"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/netcloud24.com\/knowledgebase\/wp-json\/wp\/v2\/categories?post=2030"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/netcloud24.com\/knowledgebase\/wp-json\/wp\/v2\/tags?post=2030"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}