{"id":5074,"date":"2020-02-28T23:29:39","date_gmt":"2020-02-28T20:29:39","guid":{"rendered":"https:\/\/kifarunix.com\/?p=5074"},"modified":"2024-03-14T19:22:40","modified_gmt":"2024-03-14T16:22:40","slug":"install-and-setup-adiscon-loganalyzer-on-centos-8","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/install-and-setup-adiscon-loganalyzer-on-centos-8\/","title":{"rendered":"Install and Setup Adiscon LogAnalyzer on CentOS 8"},"content":{"rendered":"\n<p>In this guide, we are going to learn how to install and setup Adiscon LogAnalyzer on CentOS 8. <a aria-label=\"Adiscon LogAnalyzer (opens in a new tab)\" href=\"https:\/\/loganalyzer.adiscon.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Adiscon LogAnalyzer<\/a> is a web interface to syslog\/Rsyslog and other network event data. It provides easy browsing, analysis of real time network events and reporting services.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing Adiscon LogAnalyzer on CentOS 8<\/h2>\n\n\n\n<p>In this demo, we will be collecting logs using Rsyslog and store them on a database, preferrably MariaDB from where LogAnalyzer will read and analyze them.<\/p>\n\n\n\n<p>As such, step through this guide to setup Adiscon LogAnalyzer with Rsyslog and MariaDB on CentOS 8.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Run System Update<\/h3>\n\n\n\n<p>Resynchronize your system packages to their latest versions by running the command below;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>dnf update<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Install LAMP Stack on CentOS 8<\/h3>\n\n\n\n<p>Almost every web application requires a L[AE]MP stack. LogAnalyzer is no exception. Follow the guide below to learn how to install LAMP stack on CentOS 8.<\/p>\n\n\n\n<p><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/install-lamp-stack-on-centos-8\/\" target=\"_blank\">Install LAMP Stack on CentOS 8<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Create LogAnalyzer Database and Database User<\/h3>\n\n\n\n<p>Once the LAMP stack is installed and setup, create LogAnalyzer database and database user. This step can be made simple by installing <code>rsyslog-mysql<\/code> package which provides a sample Rsyslog MySQL schema which can be just imported into MySQL\/MariaDB server.<\/p>\n\n\n\n<p>To install <code>rsyslog-mysql<\/code> package, run the command below;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>dnf install rsyslog-mysql -y<\/code><\/pre>\n\n\n\n<p>Once the installation is done, import Rsyslog MySQL database schema, <code>\/usr\/share\/doc\/rsyslog\/mysql-createDB.sql<\/code>, into MySQL\/MariaDB.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mysql -u root -p &lt; \/usr\/share\/doc\/rsyslog\/mysql-createDB.sql<\/code><\/pre>\n\n\n\n<p>This command will create a database called <code>Syslog<\/code> on MariaDB\/MySQL db server.<\/p>\n\n\n\n<p>If you want to use a different name of the database, simply edit the schema and make necessary changes.<\/p>\n\n\n\n<p>Next, login to MySQL\/MariaDB and create a LogAnalyzer database user with all the privileges granted on the database imported above<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mysql -u root -p<\/code><\/pre>\n\n\n\n<p>Check available databases;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>show databases;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>+--------------------+\n| Database           |\n+--------------------+\n| <strong>Syslog<\/strong>             |\n| information_schema |\n| mysql              |\n| performance_schema |\n+--------------------+\n4 rows in set (0.001 sec)<\/code><\/pre>\n\n\n\n<p><strong>Replace the user and its password accordingly<\/strong>.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>grant all on Syslog.* to logadmin@localhost identified by 'str0ngP@ssW0rd';<\/code><\/pre>\n\n\n\n<p>Reload the privileges tables and quit the database.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>flush privileges;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>quit<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Configure Rsyslog<\/h2>\n\n\n\n<p>To begin with, configure Rsyslog to enable UDP and TCP syslog reception. This can be done by commenting out (<strong>removing comments, #<\/strong>) at the beginning of the following highlighted lines;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>...\n# Provides UDP syslog reception\n# for parameters see http:\/\/www.rsyslog.com\/doc\/imudp.html\n<strong>module(load=\"imudp\")<\/strong>\n<strong>input(type=\"imudp\" port=\"514\")<\/strong>\n...<\/code><\/pre>\n\n\n\n<p>If you also want to receive logs via TCP, simply uncomment the following highlighted lines.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>...\n# Provides TCP syslog reception\n# for parameters see http:\/\/www.rsyslog.com\/doc\/imtcp.html\n<strong>module(load=\"imtcp\")\ninput(type=\"imtcp\" port=\"514\")<\/strong><\/code><\/pre>\n\n\n\n<p>Next, enable load the Rsyslog MySQL module to enable you to forward logs into MySQL\/MariaDB database. This can be done by the use of <code><strong>ommysql<\/strong><\/code> Rsyslog module as shown below. See the highlighted lines;<\/p>\n\n\n\n<p>Be sure to replace the <strong>server, serverport, database name, database user and password<\/strong> accordingly.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>...\n#### MODULES ####\n\nmodule(load=\"imuxsock\"    # provides support for local system logging (e.g. via logger command)\n       SysSock.Use=\"off\") # Turn off message reception via local log socket; \n                          # local messages are retrieved through imjournal now.\nmodule(load=\"imjournal\"             # provides access to the systemd journal\n       StateFile=\"imjournal.state\") # File to store the position in the journal\n#module(load=\"imklog\") # reads kernel messages (the same are read from journald)\n#module(load\"immark\") # provides --MARK-- message capability\n<strong># Enable MySQL Logging\nmodule(load=\"ommysql\")\naction(type=\"ommysql\" server=\"localhost\" serverport=\"3306\"\n       db=\"Syslog\" uid=\"logadmin\" pwd=\"str0ngP@ssW0rd\")<\/strong>\n...<\/code><\/pre>\n\n\n\n<p>Rsyslog is now ready to receive logs and forward them to MySQL database. However, you might need to restrict log forwarding to Rsyslog using the <strong><code>$AllowedSender<\/code><\/strong> parameter.<\/p>\n\n\n\n<p>This parameter takes the format;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code><strong>$AllowedSender [UDP\/TCP], ip[\/bits], ip[\/bits]<\/strong><\/code><\/pre>\n\n\n\n<p>Hence, to allow specific servers to send logs to Rsyslog server, you would simply add a line like as shown below under the <strong><code>### GLOBAL DIRECTIVES ###<\/code><\/strong> section.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code><strong>$AllowedSender UDP, 192.168.56.0\/24, [::1]\/128, *.kifarunix-demo.com<\/strong><\/code><\/pre>\n\n\n\n<p>To define servers allowed for TCP syslog reception;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code><strong>$AllowedSender TCP, 192.168.56.0\/24, [::1]\/128, servera.kifarunix-demo.com<\/strong><\/code><\/pre>\n\n\n\n<p>Basic Rsyslog configuration is done. Save the configuration and restart rsyslog;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl restart rsyslog<\/code><\/pre>\n\n\n\n<p>Allow Rsyslog remote connection via FirewallD;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>firewall-cmd --add-port=514\/{tcp,udp} --permanent<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>firewall-cmd --reload<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Install LogAnalyzer on CentOS 8<\/h2>\n\n\n\n<p>To install LogAnalyzer on CentOS 8, download the latest stable release version of LogAnalyzer from the <a rel=\"noreferrer noopener\" aria-label=\"downloads page (opens in a new tab)\" href=\"http:\/\/loganalyzer.adiscon.com\/downloads\/\" target=\"_blank\">downloads page<\/a>. You can simply use wget command to pull the tarball as shown below;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>wget http:\/\/download.adiscon.com\/loganalyzer\/loganalyzer-4.1.10.tar.gz<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Extract LogAnalyzer Tarball<\/h3>\n\n\n\n<p>Once the download is complete, extract LogAnalyzer tarball.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>tar xzf loganalyzer-4.1.10.tar.gz<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Install LogAnalyzer<\/h3>\n\n\n\n<p>Sine LogAnalyzer is a web application, you can install on your default web server root directory. You can however create LogAnalyzer directory under the web root directory.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>mkdir \/var\/www\/html\/loganalyzer<\/code><\/pre>\n\n\n\n<p>Next, upload all files from the <strong>loganalyzer\/src\/<\/strong> folder to your web server root directory created above.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cp -r loganalyzer-4.1.10\/src\/* \/var\/www\/html\/loganalyzer\/<\/code><\/pre>\n\n\n\n<p>Next, copy the <code>loganalyzer-4.1.10\/contrib\/configure.sh<\/code> to the web root directory.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cp loganalyzer-4.1.10\/contrib\/configure.sh \/var\/www\/html\/loganalyzer\/<\/code><\/pre>\n\n\n\n<p>Next, execute the script to create a required empty, <code>contrib.php<\/code> file and set the necessary permissions.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>cd \/var\/www\/html\/loganalyzer\/<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>bash configure.sh<\/code><\/pre>\n\n\n\n<p>Edit the default Apache configuration and set the adjust the web root directory appropriately.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>vim \/etc\/httpd\/conf\/httpd.conf<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code># DocumentRoot \"\/var\/www\/html\"\n<strong>DocumentRoot \"\/var\/www\/html\/loganalyzer\"<\/strong><\/code><\/pre>\n\n\n\n<p>Save the configurations, quit and restart Apache;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>httpd -t<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>systemctl restart httpd<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Configure SELinux<\/h3>\n\n\n\n<p>Unify HTTPD handling of all content files;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>setsebool -P httpd_unified 1<\/code><\/pre>\n\n\n\n<p>Allow httpd network connection<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>setsebool -P httpd_can_network_connect 1<\/code><\/pre>\n\n\n\n<p>Allow httpd to graceful shutdown<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>setsebool -P httpd_graceful_shutdown 1<\/code><\/pre>\n\n\n\n<p>Allow httpd network relay connection<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>setsebool -P httpd_can_network_relay 1<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Finalize LogAnalyzer Setup on Browser<\/h3>\n\n\n\n<p>LogAnalyzer is now setup. You can access it via the address <strong><code>http:\/\/server_IP_OR_Hostname<\/code><\/strong><\/p>\n\n\n\n<p>When you encounter the error, shown below, simply click <strong>here<\/strong> to proceed.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"776\" height=\"274\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer.png\" alt=\"LogAnalyzer CentOS 8\" class=\"wp-image-5079\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer.png?v=1582921317 776w, https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-768x271.png?v=1582921317 768w\" sizes=\"(max-width: 776px) 100vw, 776px\" \/><\/figure>\n\n\n\n<p>Click Next to check if all the required prereqs are met.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1356\" height=\"382\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-prereqs.png\" alt=\"\" class=\"wp-image-5080\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-prereqs.png?v=1582921364 1356w, https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-prereqs-768x216.png?v=1582921364 768w\" sizes=\"(max-width: 1356px) 100vw, 1356px\" \/><\/figure>\n\n\n\n<p>Ensure that the config.php file is writeable.<\/p>\n\n\n\n<p>Under Basic configuration, enable User database and set the right database connection details.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1331\" height=\"630\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-basic-configs.png\" alt=\"\" class=\"wp-image-5081\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-basic-configs.png?v=1582921433 1331w, https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-basic-configs-768x364.png?v=1582921433 768w\" sizes=\"(max-width: 1331px) 100vw, 1331px\" \/><\/figure>\n\n\n\n<p>Click Next to create the necessary database tables used by the LogAnalyzer User System.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1357\" height=\"399\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganayzer-create-tables.png\" alt=\"\" class=\"wp-image-5082\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganayzer-create-tables.png?v=1582921512 1357w, https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganayzer-create-tables-768x226.png?v=1582921512 768w\" sizes=\"(max-width: 1357px) 100vw, 1357px\" \/><\/figure>\n\n\n\n<p>Ensure that all queries execute successfully on Step 5.<\/p>\n\n\n\n<p>Create LogAnalyzer Administrator User Account.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1352\" height=\"433\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-useraccount.png\" alt=\"\" class=\"wp-image-5083\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-useraccount.png?v=1582921544 1352w, https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-useraccount-768x246.png?v=1582921544 768w\" sizes=\"(max-width: 1352px) 100vw, 1352px\" \/><\/figure>\n\n\n\n<p>Create the first source for syslog messages. In this case, select <strong>MySQL native<\/strong> and provide the correct database connection details. Note the following default Database and Table names;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>CREATE DATABASE <strong>Syslog<\/strong>;\nUSE Syslog;\nCREATE TABLE <strong>SystemEvents<\/strong>\n...<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1328\" height=\"550\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-logsource.png\" alt=\"LogAnalyzer CentOS 8\" class=\"wp-image-5084\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-logsource.png?v=1582921585 1328w, https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/loganalyzer-logsource-768x318.png?v=1582921585 768w\" sizes=\"(max-width: 1328px) 100vw, 1328px\" \/><\/figure>\n\n\n\n<p>Click Next to finalize the LogAnalyzer setup.<\/p>\n\n\n\n<p>When you click <strong>Finish<\/strong>, it takes you to LogAnalyzer login page.<\/p>\n\n\n\n<p>Login as administrator user you created on Step 6. Upon successful login, boom, you land on the dashboard.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1348\" height=\"652\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/LogAnalyzer-Dashboard.png\" alt=\"LogAnalyzer Dashboard\" class=\"wp-image-5085\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/LogAnalyzer-Dashboard.png?v=1582921650 1348w, https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/LogAnalyzer-Dashboard-768x371.png?v=1582921650 768w\" sizes=\"(max-width: 1348px) 100vw, 1348px\" \/><\/figure>\n\n\n\n<p>If you want to enable auto refresh for realtime streaming, see screenshot below;<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1349\" height=\"282\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/autorefresh.png\" alt=\"\" class=\"wp-image-5086\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/autorefresh.png?v=1582921675 1349w, https:\/\/kifarunix.com\/wp-content\/uploads\/2020\/02\/autorefresh-768x161.png?v=1582921675 768w\" sizes=\"(max-width: 1349px) 100vw, 1349px\" \/><\/figure>\n\n\n\n<p>You have successfully installed LogAnalyzer. That marks the end of our tutorial on how to installing Adiscon LogAnalyzer on CentOS 8.<\/p>\n\n\n\n<p>Read more on <a rel=\"noreferrer noopener\" aria-label=\"LogAnalyzer INSTALL ReadMe (opens in a new tab)\" href=\"https:\/\/github.com\/rsyslog\/loganalyzer\/blob\/master\/INSTALL\" target=\"_blank\">LogAnalyzer INSTALL ReadMe<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Related Tutorials;<\/h3>\n\n\n\n<p><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/configure-nxlog-to-forward-system-logs-to-rsyslog-server-on-ubuntu-18-04\/\" target=\"_blank\">Configure NXLog to Forward System Logs to Rsyslog Server on Ubuntu 18.04<\/a><\/p>\n\n\n\n<p><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/configure-rsyslog-on-solaris-11-4-to-send-logs-to-remote-log-server\/\" target=\"_blank\">Configure Rsyslog on Solaris 11.4 to Send logs to Remote Log Server<\/a><\/p>\n\n\n\n<p><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/how-to-configure-remote-logging-with-rsyslog-on-ubuntu-18-04\/\" target=\"_blank\">How to Configure Remote Logging with Rsyslog on Ubuntu 18.04<\/a><\/p>\n\n\n\n<p><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/a-basic-introduction-to-rsyslog-filters\/\" target=\"_blank\">A Basic Introduction to Rsyslog Filters<\/a><\/p>\n\n\n\n<p><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/kifarunix.com\/how-to-configure-syslog-to-send-logs-to-remote-syslog-server-on-solaris-11-4\/\" target=\"_blank\">Configure Syslog on Solaris 11.4 for Remote Logging<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this guide, we are going to learn how to install and setup Adiscon LogAnalyzer on CentOS 8. Adiscon LogAnalyzer is a web interface to<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[121,191,331],"tags":[1142,1298,1299,1300,1297,136],"class_list":["post-5074","post","type-post","status-publish","format-standard","hentry","category-howtos","category-rsyslog","category-syslog","tag-centos-8","tag-loganalyzer","tag-loganalyzer-centos-8","tag-loganalyzer-mariadb","tag-loganalyzer-rsyslog","tag-mariadb","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50"],"_links":{"self":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/5074"}],"collection":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/comments?post=5074"}],"version-history":[{"count":6,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/5074\/revisions"}],"predecessor-version":[{"id":21324,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/5074\/revisions\/21324"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=5074"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=5074"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=5074"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}