{"id":9205,"date":"2021-08-13T11:28:18","date_gmt":"2021-08-13T11:28:18","guid":{"rendered":"https:\/\/linuxways.net\/?p=9205"},"modified":"2021-08-13T11:28:26","modified_gmt":"2021-08-13T11:28:26","slug":"how-to-install-cacti-on-ubuntu","status":"publish","type":"post","link":"https:\/\/linuxways.net\/de\/ubuntu\/how-to-install-cacti-on-ubuntu\/","title":{"rendered":"How to Install Cacti on Ubuntu"},"content":{"rendered":"<p>Cacti is a network graphing solution based on RRDtool\u2019s framework. It collects and stores performance information to create graphs. It mostly uses SNMP for gathering information. In this post, we will be showing you step by step procedure for installing Cacti on Ubuntu OS.<\/p>\n<p>Note<strong>:<\/strong> The installation method described here has been tried on <strong>Ubuntu 20.04 LTS.<\/strong><\/p>\n<h2>Step 1: Installing Prerequisites<\/h2>\n<p>First, we will update the repository index and then install some prerequisite packages.<\/p>\n<p>Execute the command below to update the repository index:<\/p>\n<pre>$ sudo apt update -y<\/pre>\n<p>Then use this command for installing the prerequisites:<\/p>\n<pre>$ sudo apt install unzip rrdtool git snmp php-snmp librrds-perl curl gnupg2 -y<\/pre>\n<h2>Step 2: Installing LAMP server<\/h2>\n<p>Cacti also requires LAMP stack to be installed on your system. Use this command to install it:<\/p>\n<pre>$ sudo apt install mariadb-server php php-mysql apache2 libapache2-mod-php php-xml php-mbstring php-gmp php-ldap php-gd -y<\/pre>\n<p>Wait for a little until the installation of all the mentioned packages is completed on your system.<\/p>\n<p>Next, you are required to do is to open the <strong>php.ini<\/strong> file in a text editor using the command below:<\/p>\n<pre>$ sudo nano \/etc\/php\/7.4\/apache2\/php.ini<\/pre>\n<p>Find and change the values of these lines:<\/p>\n<pre>memory_limit = 512M\r\n\r\nmax_execution_time = 60\r\n\r\ndate.timezone = Asia\/Karachi<\/pre>\n<p>Now save the file and exit the editor.<\/p>\n<p>Then open another <strong>php.ini<\/strong> file:<\/p>\n<pre>$ sudo nano \/etc\/php\/7.4\/cli\/php.ini<\/pre>\n<p>Find and change the values of these lines:<\/p>\n<pre>memory_limit = 512M\r\n\r\nmax_execution_time = 60\r\n\r\ndate.timezone = Asia\/Karachi<\/pre>\n<p>Now save the file and exit the editor.<\/p>\n<p>As you have done the changes, so now restart the Apache service:<\/p>\n<pre>$ sudo systemctl restart apache2<\/pre>\n<p>Now the LAMP stack has been installed.<\/p>\n<h2>Step 3: Configuring MariaDB Server<\/h2>\n<p>The database server used by Cacti is MariaDB. We will need to configure it.<\/p>\n<p>Use the below command to edit the default configuration file of MariaDB server in Nano editor:<\/p>\n<pre>$ sudo nano \/etc\/mysql\/mariadb.conf.d\/50-server.cnf<\/pre>\n<p>Add the below lines in this file:<\/p>\n<pre>collation-server = utf8mb4_unicode_ci\r\n\r\ntmp_table_size = 64M\r\n\r\njoin_buffer_size = 64M\r\n\r\ninnodb_file_format = Barracuda\r\n\r\ninnodb_large_prefix = 1\r\n\r\nmax_heap_table_size = 128M\r\n\r\ninnodb_io_capacity = 5000\r\n\r\ninnodb_io_capacity_max = 10000\r\n\r\ninnodb_buffer_pool_size = 512M\r\n\r\ninnodb_flush_log_at_timeout = 3\r\n\r\ninnodb_read_io_threads = 32\r\n\r\ninnodb_write_io_threads = 16<\/pre>\n<p>Save the file and exit the editor.<img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"415\" class=\"wp-image-9206\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-212.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-212.png 700w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-212-300x178.png 300w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/p>\n<p>Now restart MariaDB using the command below:<\/p>\n<pre>$ sudo systemctl restart mariadb<\/pre>\n<p>Next, we will create a database and a user for Cacti. Enter into MariaDB server prompt using the command below:<\/p>\n<pre>$ sudo mysql<\/pre>\n<p>Create database named \u201ccacti_db\u201d using the command below:<\/p>\n<pre>$ create database cacti_db;<\/pre>\n<p>Then create a user named \u201ccactiuser\u201d with the password \u201c123cacti\u201d for Cacti:<\/p>\n<pre>$ GRANT ALL ON cacti_db.* TO cactiuser@localhost IDENTIFIED BY '123cacti';<\/pre>\n<p>Then use the command below to apply the changes you have made and then exit the MySQL prompt.<\/p>\n<pre>$ flush privileges;<\/pre>\n<pre>$ exit;<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"877\" height=\"488\" class=\"wp-image-9207\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-213.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-213.png 877w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-213-300x167.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-213-768x427.png 768w\" sizes=\"auto, (max-width: 877px) 100vw, 877px\" \/><\/p>\n<p>Now grant database access to MySQL timezone:<\/p>\n<pre>$ sudo mysql mysql &lt; \/usr\/share\/mysql\/mysql_test_data_timezone.sql<\/pre>\n<p>Now grant permission to the cactiuser to access the MySQL timezone. To do so, first enter into MariaDB server prompt using the command below:<\/p>\n<pre>$ sudo mysql<\/pre>\n<p>Then grant permission to cactiuser to access MySQL timezone:<\/p>\n<pre>$ GRANT SELECT ON mysql.time_zone_name TO cactiuser@localhost;<\/pre>\n<p>Then use the command below to apply the changes you have made and then exit the MySQL prompt.<\/p>\n<pre>$ flush privileges;<\/pre>\n<pre>$ exit;<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"798\" height=\"403\" class=\"wp-image-9208\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-214.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-214.png 798w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-214-300x152.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-214-768x388.png 768w\" sizes=\"auto, (max-width: 798px) 100vw, 798px\" \/><\/p>\n<h2>Step 4: Installing Cacti<\/h2>\n<p>Now download Cacti from its official <a href=\"https:\/\/www.cacti.net\/info\/downloads\">Downloads<\/a> page. Alternatively, you can use the below command to download the Cacti latest version 1.2.18 (as of August 2021).<\/p>\n<pre>$ wget <a href=\"https:\/\/files.cacti.net\/cacti\/linux\/cacti-1.2.18.tar.gz\">https:\/\/files.cacti.net\/cacti\/linux\/cacti-1.2.18.tar.gz<\/a><\/pre>\n<p>You can find the downloaded tar.gz file in your current Terminal directory.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"1027\" height=\"209\" class=\"wp-image-9209\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-215.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-215.png 1027w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-215-300x61.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-215-1024x208.png 1024w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-215-768x156.png 768w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-215-1020x209.png 1020w\" sizes=\"auto, (max-width: 1027px) 100vw, 1027px\" \/><\/p>\n<p>Then extract the archive using the command below:<\/p>\n<pre>$ sudo tar -zxf cacti-1.2.18.tar.gz<\/pre>\n<p>The archive file <strong>cacti-1.2.18.tar.gz<\/strong> will be extracted to a new folder <strong>cacti-1.2.18<\/strong>. Move the contents of the directory to \/var\/www\/html\/cacti.<\/p>\n<pre>$ sudo mv cacti-1.2.18 \/var\/www\/html\/cacti<\/pre>\n<p>Now import the cacti database using the command below:<\/p>\n<pre>$ sudo mysql cactidb &lt; \/var\/www\/html\/cacti\/cacti.sql<\/pre>\n<p>Edit the <strong>config.php<\/strong> file:<\/p>\n<pre>$ sudo nano \/var\/www\/html\/cacti\/include\/config.php<\/pre>\n<p>Then modify the settings as follows:<\/p>\n<pre>$database_type = 'mysql';<\/pre>\n<pre>$database_default = 'cacti_db';<\/pre>\n<pre>$database_hostname = 'localhost';<\/pre>\n<pre>$database_username = 'cactiuser';<\/pre>\n<pre>$database_password = \u2018123cacti\u2019;<\/pre>\n<pre>$database_port = '3306';<\/pre>\n<p>Save the <strong>config.php<\/strong> file and close it.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"719\" height=\"248\" class=\"wp-image-9210\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-216.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-216.png 719w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-216-300x103.png 300w\" sizes=\"auto, (max-width: 719px) 100vw, 719px\" \/><\/p>\n<p>Now change the Cacti directory owner using the command below:<\/p>\n<pre>$ sudo chown -R www-data:www-data \/var\/www\/html\/cacti\/<\/pre>\n<p>Also, change the permissions:<\/p>\n<pre>$ sudo chmod -R 775 \/var\/www\/html\/cacti\/<\/pre>\n<h2>Step 5: Creating a Cron Job<\/h2>\n<p>Now create a cron job file to configure poller to gather information every 5 minutes. Use this command to create a cron job file:<\/p>\n<pre>$ sudo nano \/etc\/cron.d\/cacti<\/pre>\n<p>Add the below line in the file:<\/p>\n<pre>*\/5 * * * * www-data php \/var\/www\/html\/cacti\/poller.php &gt; \/dev\/null 2&gt;&amp;1<\/pre>\n<p>Then save the cron file and close it.<\/p>\n<h2>Step 6: Configuring Apache<\/h2>\n<p>Now configure Apache virtual host file using the command below:<\/p>\n<pre>$ sudo nano \/etc\/apache2\/sites-available\/cacti.conf<\/pre>\n<p>In the file, add below lines:<\/p>\n<pre>Alias \/cacti \/var\/www\/html\/cacti\r\n\r\n&lt;Directory \/var\/www\/html\/cacti&gt;\r\n\r\nOptions +FollowSymLinks\r\n\r\nAllowOverride None\r\n\r\n&lt;IfVersion &gt;= 2.3&gt;\r\n\r\nRequire all granted\r\n\r\n&lt;\/IfVersion&gt;\r\n\r\n&lt;IfVersion &lt; 2.3&gt;\r\n\r\nOrder Allow,Deny\r\n\r\nAllow from all\r\n\r\n&lt;\/IfVersion&gt;\r\n\r\nAddType application\/x-httpd-php .php<\/pre>\n<pre>&lt;IfModule mod_php.c&gt;\r\n\r\nphp_flag magic_quotes_gpc Off\r\n\r\nphp_flag short_open_tag On\r\n\r\nphp_flag register_globals Off\r\n\r\nphp_flag register_argc_argv On\r\n\r\nphp_flag track_vars On\r\n\r\nphp_value mbstring.func_overload 0\r\n\r\nphp_value include_path .\r\n\r\n&lt;\/IfModule&gt;\r\n\r\nDirectoryIndex index.php\r\n\r\n&lt;\/Directory&gt;<\/pre>\n<p>Now save the cacti.conf file and exit it.<\/p>\n<p>Then run these commands:<\/p>\n<pre>$ sudo a2ensite cacti<\/pre>\n<pre>$ sudo systemctl restart apache2<\/pre>\n<p>Then to verify if the Apache is running without any issues, use the command below:<\/p>\n<pre>$ sudo systemctl status apache2<\/pre>\n<p><strong>Step 7: Starting the Cacti Initialization Wizard<\/strong><\/p>\n<p>Now access the following link in your web browser:<\/p>\n<pre><a href=\"http:\/\/server_ip\/cacti\"><strong>http:\/\/server_ip\/cacti<\/strong><\/a><\/pre>\n<p>After accessing the above link, you will see the Cacti login page. To login, use admin as your login credentials.<\/p>\n<p><strong><img loading=\"lazy\" decoding=\"async\" width=\"574\" height=\"431\" class=\"wp-image-9211\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-217.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-217.png 574w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-217-300x225.png 300w\" sizes=\"auto, (max-width: 574px) 100vw, 574px\" \/><\/strong><\/p>\n<p>Then the following page will appear. You can set a new password here.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"686\" height=\"395\" class=\"wp-image-9212\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-218.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-218.png 686w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-218-300x173.png 300w\" sizes=\"auto, (max-width: 686px) 100vw, 686px\" \/><\/p>\n<p>Then you will be presented with the license terms. Accept the terms and click <strong>Begin.<\/strong><\/p>\n<p><strong><img loading=\"lazy\" decoding=\"async\" width=\"725\" height=\"243\" class=\"wp-image-9213\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-219.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-219.png 725w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-219-300x101.png 300w\" sizes=\"auto, (max-width: 725px) 100vw, 725px\" \/><\/strong><\/p>\n<p>Hit <strong>Next<\/strong>.<\/p>\n<p><strong><img loading=\"lazy\" decoding=\"async\" width=\"916\" height=\"450\" class=\"wp-image-9214\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-220.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-220.png 916w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-220-300x147.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-220-768x377.png 768w\" sizes=\"auto, (max-width: 916px) 100vw, 916px\" \/><\/strong><\/p>\n<p>Select the installation type and hit <strong>Next<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"875\" height=\"520\" class=\"wp-image-9215\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-221.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-221.png 875w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-221-300x178.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-221-768x456.png 768w\" sizes=\"auto, (max-width: 875px) 100vw, 875px\" \/><\/p>\n<p>Hit <strong>Next<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"823\" height=\"442\" class=\"wp-image-9216\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-222.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-222.png 823w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-222-300x161.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-222-768x412.png 768w\" sizes=\"auto, (max-width: 823px) 100vw, 823px\" \/><\/p>\n<p>Again, hit <strong>Next<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"847\" height=\"447\" class=\"wp-image-9217\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-223.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-223.png 847w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-223-300x158.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-223-768x405.png 768w\" sizes=\"auto, (max-width: 847px) 100vw, 847px\" \/><\/p>\n<p>Check the box at the bottom and hit <strong>Next<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"821\" height=\"470\" class=\"wp-image-9218\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-224.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-224.png 821w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-224-300x172.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-224-768x440.png 768w\" sizes=\"auto, (max-width: 821px) 100vw, 821px\" \/><\/p>\n<p>Chose your preferred options and hit <strong>Next<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"827\" height=\"471\" class=\"wp-image-9219\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-225.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-225.png 827w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-225-300x171.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-225-768x437.png 768w\" sizes=\"auto, (max-width: 827px) 100vw, 827px\" \/><\/p>\n<p>When the following screen appears, make sure all templates are selected. Then hit <strong>Next<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"822\" height=\"471\" class=\"wp-image-9220\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-226.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-226.png 822w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-226-300x172.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-226-768x440.png 768w\" sizes=\"auto, (max-width: 822px) 100vw, 822px\" \/><\/p>\n<p>Hit <strong>Next<\/strong>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"831\" height=\"489\" class=\"wp-image-9221\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-227.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-227.png 831w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-227-300x177.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-227-768x452.png 768w\" sizes=\"auto, (max-width: 831px) 100vw, 831px\" \/><\/p>\n<p>Check <strong>Confirm Installation<\/strong> box and click <strong>Install<\/strong> to initiate the installation process.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"851\" height=\"280\" class=\"wp-image-9222\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-228.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-228.png 851w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-228-300x99.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-228-768x253.png 768w\" sizes=\"auto, (max-width: 851px) 100vw, 851px\" \/><\/p>\n<p>After the installation is finished, hit <strong>Get Started.<\/strong><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"821\" height=\"269\" class=\"wp-image-9223\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-229.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-229.png 821w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-229-300x98.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-229-768x252.png 768w\" sizes=\"auto, (max-width: 821px) 100vw, 821px\" \/><\/p>\n<p>After that, the following Cacti Dashboard will appear on your screen.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"920\" height=\"422\" class=\"wp-image-9224\" src=\"http:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-230.png\" srcset=\"https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-230.png 920w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-230-300x138.png 300w, https:\/\/linuxways.net\/wp-content\/uploads\/2021\/08\/word-image-230-768x352.png 768w\" sizes=\"auto, (max-width: 920px) 100vw, 920px\" \/><\/p>\n<p>Now in your Cacti Dashboard, you can create devices and start monitoring them.<\/p>\n<p>In this post, we described step by step procedure for installing the Cacti monitoring tool on Ubuntu 20.04 LTS. For more information about how to add and manage your devices, visit Cacti&#8217;s official <a href=\"https:\/\/docs.cacti.net\/#cacti-overview\">documentation<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>Cacti is a network graphing solution based on RRDtool\u2019s framework. It collects and stores performance information to create graphs. It mostly uses SNMP for gathering information. In this&hellip;<\/p>","protected":false},"author":1,"featured_media":9279,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-9205","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ubuntu"],"_links":{"self":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/9205","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/comments?post=9205"}],"version-history":[{"count":0,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/posts\/9205\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media\/9279"}],"wp:attachment":[{"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/media?parent=9205"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/categories?post=9205"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxways.net\/de\/wp-json\/wp\/v2\/tags?post=9205"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}