{"id":928,"date":"2014-04-01T12:12:31","date_gmt":"2014-04-01T10:12:31","guid":{"rendered":"http:\/\/wiegehtdasmitdemcloud.de\/?p=928"},"modified":"2015-05-08T16:47:19","modified_gmt":"2015-05-08T14:47:19","slug":"installation-von-hyperic-5-8-1-mit-postgresql","status":"publish","type":"post","link":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/","title":{"rendered":"Installation von Hyperic 5.8.1 mit PostgreSQL"},"content":{"rendered":"<p>Dies ist eine Kurzanleitung zur Installation des Hyperic-Servers und Agenten auf CentOS 6.5. Die PostgreSQL Datenbank wird vorinstalliert und kann auf dem gleichen oder einem separaten System installiert werden. Somit wird die l\u00e4stige knallgelbe Meldung:<\/p>\n<p><span style=\"background-color: #ffff00;\">&#8220;The Hyperic built-in database is provided for EVALUATION PURPOSES ONLY. For production purposes use vPostgreSQL.&#8221;<\/span><\/p>\n<p>vermieden.<\/p>\n<p><!--more--><\/p>\n<address><em>Vorab: Die Dokumenation von Hyperic 5.8 und die Downloads sind hier: \u00a0<a href=\"https:\/\/www.vmware.com\/support\/pubs\/hyperic-pubs.html\">https:\/\/www.vmware.com\/support\/pubs\/hyperic-pubs.html<\/a><\/em><\/address>\n<h2 id=\"screensteps-webpost-48632\">1) Postgresql 9.1installieren<\/h2>\n<div>\n<div class=\"screensteps-content\">\n<div class=\"screensteps-steps\">\n<div class=\"screensteps-step\">\n<div class=\"instructions\">\n<p>Ich benutze CentOS 6.5 mit allen Updates die am 1. April 2014 verf\u00fcgbar waren:<\/p>\n<p>Postgresql 9.1 Installationsanleitung ist hier: \u00a0http:\/\/tecadmin.net\/installing-postgresql-9-1-on-centos-56-and-rhel-56\/#<\/p>\n<p>1.1 Repository hinzuf\u00fcgen<\/p>\n<pre class=\"lang:default decode:true\"># rpm -Uvh http:\/\/yum.postgresql.org\/9.1\/redhat\/rhel-6.3-x86_64\/pgdg-centos91-9.1-4.noarch.rpm<\/pre>\n<p>1.2 Server installieren<\/p>\n<pre class=\"lang:default decode:true\"># yum install postgresql91-server<\/pre>\n<p>1.3 Datenbank initialisieren<\/p>\n<pre class=\"lang:default decode:true\"># \/etc\/init.d\/postgresql-9.1 initdb<\/pre>\n<p>Nach der Installation sind die Daten und die Log-Files unter\u00a0<strong>\/var\/lib\/pgsql\/9.1\/data<\/strong><\/p>\n<p>1.4 Postgresql Autostart einschalten<\/p>\n<pre class=\"lang:default decode:true\"># chkconfig postgresql-9.1 on\r\n# chkconfig postgresql-9.1 --list\r\npostgresql-9.1 0:off 1:off 2:on 3:on 4:on 5:on 6:off<\/pre>\n<h2>2) Die Konfiguration der DB anpassen<\/h2>\n<\/div>\n<\/div>\n<div class=\"screensteps-step\">\n<div class=\"instructions\">\n<p>2.1 PostgreSQL kann an die Gr\u00f6sse der Umgebung angepasst werden, siehe Details in: <a href=\"http:\/\/pubs.vmware.com\/hyperic-58\/index.jsp?topic=%2Fcom.vmware.hyperic.install.config.doc%2FGUID-AAA4C9F5-70A9-4F02-BF23-1864647F9B8E.html\">http:\/\/pubs.vmware.com\/hyperic-58\/index.jsp?topic=%2Fcom.vmware.hyperic.install.config.doc%2FGUID-AAA4C9F5-70A9-4F02-BF23-1864647F9B8E.html<\/a><br \/>\nJe nachdem, ob PostgreSQL auf dem gleichen Server installiert wird, sollte man auch die<\/p>\n<pre class=\"lang:default decode:true \">listen_addresses = '*'<\/pre>\n<p>in <strong>postgresql.conf<\/strong> eintragen.<\/p>\n<p><span style=\"color: #262626;\">2.2 Datenbank-Authentifizierung konfigurieren:\u00a0<\/span><\/p>\n<p>In der Datei:<strong> \/var\/lib\/pgsql\/9.1\/data\/pg_hba.conf<\/strong><\/p>\n<pre class=\"lang:default decode:true\"># TYPE DATABASE USER ADDRESS METHOD\r\n# \"local\" is for Unix domain socket connections only\r\nlocal all postgres trust\r\n<strong>local HQ hqadmin password\r\n<\/strong>host all all 0.0.0.0\/0 password\r\n# IPv4 local connections:\r\nhost all all 127.0.0.1\/32 password\r\n# IPv6 local connections:\r\nhost all all ::1\/128 password<\/pre>\n<p>2.3 Datenbank neu-starten:<\/p>\n<pre class=\"lang:default decode:true \"># \/etc\/init.d\/postgresql-9.1 restart<\/pre>\n<h2>\u00a0<span style=\"font-size: 24px;\">3) Benutzer hqadmin und HQ Datenbank anlegen<\/span><\/h2>\n<\/div>\n<\/div>\n<div class=\"screensteps-step\">\n<div class=\"instructions\">\n<p>3.1 psql &#8211; Shell starten:<\/p>\n<pre class=\"lang:default decode:true\">su - postgres\r\n# psql<\/pre>\n<p>3.2 User und Datenbank anlegen (nach jedem Kommando &#8220;;&#8221; nicht vergessen !)<\/p>\n<pre class=\"lang:default decode:true\">postgres=# CREATE USER hqadmin WITH ENCRYPTED PASSWORD 'hqadmin';\r\nCREATE ROLE<\/pre>\n<pre class=\"lang:default decode:true \">postgres=# CREATE DATABASE \"HQ\" OWNER hqadmin ENCODING 'UTF8';\r\nCREATE DATABASE<\/pre>\n<p>3.3. Ergebnisse pr\u00fcfen und psgl beenden:<\/p>\n<pre class=\"lang:default decode:true\">postgres=# \\list\r\n\r\npostgres=# \\du \r\n\r\npostgres=# \\q<\/pre>\n<p>3.4 \u00dcberpr\u00fcfen, ob ein Login mit dem neuen User klappt:<\/p>\n<pre class=\"lang:default decode:true \"># psql -U hqadmin -d HQ\r\nPassword for user hqadmin:\r\n\r\npsql (9.1.13)\r\nType \"help\" for help.\r\nHQ=&gt; \\q<\/pre>\n<h2>\u00a04) Hyperic server installation<\/h2>\n<\/div>\n<\/div>\n<div class=\"screensteps-step\">\n<div class=\"instructions\">\n<p>4.1 Hyperic wird nicht als root, sondern als user &#8220;hyperic&#8221; installiert, deshalb zuerst den User anlegen:<\/p>\n<pre class=\"lang:default decode:true\"># useradd hyperic\r\n# passwd hyperic\r\n# su - hyperic<\/pre>\n<p>4.2 Installation starten:<\/p>\n<pre class=\"lang:default decode:true \">[hyperic@hyperic01 ~]$ tar zxvf hyperic-hqee-installer-x86-64-linux-5.8.1.tar.gz[hyperic@hyperic01 hyperic-hqee-installer-5.8.1]$ .\/setup.sh -full\r\n\r\n...\r\n\r\nChoose which software to install:\r\n\r\n1: Hyperic HQ Server\r\n\r\n...<\/pre>\n<p>Alle Einstellungen k\u00f6nnen als vorgeschlagen belassen werden, bis zu der Frage nach der Datenbank. Hier 2. f\u00fcr die eigene PostgreSQL w\u00e4hlen:<\/p>\n<pre class=\"lang:default decode:true\">1: HQ Built-in Database\r\n2: PostgreSQL\r\n\r\nThe HQ built-in database is provided for EVALUATION PURPOSES ONLY. For production purposes use vPosgreSQL. What backend database should the HQ server use? [default '1']:\r\n2<\/pre>\n<p>danach den Namen des DB-Hosts, den Benutzernamen (hqadmin) und Passwort angeben.<\/p>\n<h2><span style=\"font-size: 24px;\">5) Hyperic-Server Startskript<\/span><\/h2>\n<\/div>\n<\/div>\n<div class=\"screensteps-step\">\n<div class=\"instructions\">\n<p>Hier ist mein Skript zum automatischen Start des Hyperic-Servers (\/etc\/init.d\/hyperic-server) \u00a0Nach dem Kopieren sollte es mit chkconfig scharfgeschaltet werden:<\/p>\n<pre class=\"lang:default decode:true\"># chkconfig hyperic-server on<\/pre>\n<pre class=\"lang:default decode:true\">#!\/bin\/sh\r\n# Hyperic Server Stops and starts the Hyperic Server\r\n#\r\n# chkconfig: 2345 97 1\r\n# description: Used to start and stop the Hyperic Server\r\n#\r\n\r\n#### CHANGE following according to your installation directory:\r\nexport HYPERIC_HOME=\/home\/hyperic\/server-5.8.1-EE\r\n\r\n# If there is a different user you would like to run this script as,\r\n# change the following line\r\n\r\nexport HYPERIC_USER=hyperic\r\n#********************************\r\nfunction execCommand() {\r\nOLD_PWD=`pwd`\r\nexec su - $HYPERIC_USER -c \"$HYPERIC_HOME\/bin\/hq-server.sh $1\"\r\nsleep 1 # allows prompt to return\r\ncd $OLD_PWD\r\n}\r\nstart() {\r\nexecCommand \"start\"\r\n}\r\nstatus() {\r\nexecCommand \"status\"\r\n}\r\nstop() {\r\nexecCommand \"stop\"\r\n}\r\ncase \"$1\" in\r\nstart)\r\nstart\r\nRETVAL=0\r\n;;\r\nstop)\r\nstop\r\nRETVAL=0\r\n;;\r\nstatus)\r\nstatus\r\nRETVAL=0\r\n;;\r\nrestart)\r\nstop\r\nsleep 10 # since stop is backgrounded\r\nstart\r\n;;\r\nesac\r\nexit 0<\/pre>\n<p>&nbsp;<\/p>\n<\/div>\n<\/div>\n<div class=\"screensteps-step\">\n<h2>6) Hyperic-Agent installieren<\/h2>\n<div class=\"instructions\">\n<p>6.1 Hyperic-Agent wird als root installiert. Hierzu einfach das Archiv\u00a0hyperic-hqee-agent-x86-64-linux-5.8.1.tar.gz nach\u00a0<strong>\u00a0\/opt\/vmware\/hyperic<\/strong> entpacken.<\/p>\n<p>6.2 Ausf\u00fchren und konfigurieren:<\/p>\n<pre class=\"lang:default decode:true\"># cd \/opt\/vmware\/hyperic\/bin\r\n# hq-agent.sh start<\/pre>\n<p>und den Agent interaktiv konfigurieren. Achtung der Server muss zu diesem Zeitpunkt laufen.<\/p>\n<\/div>\n<\/div>\n<div class=\"screensteps-step\">\n<h2>7) Startskript f\u00fcr den Hyperic-Agenten<\/h2>\n<div class=\"instructions\">\n<pre class=\"lang:default decode:true\">#!\/bin\/sh\r\n# Hyperic Agent Stops and starts the Hyperic Server\r\n#\r\n# chkconfig: 2345 99 1\r\n# description: Used to start and stop the Hyperic Server\r\n#\r\nexport HYPERIC_HOME=\/opt\/vmware\/hyperic\/\r\n# If there is a different user you would like to run this script as,\r\n# change the following line\r\nexport HYPERIC_USER=root\r\n# -----------------------------------------------------------------\r\nfunction execCommand() {\r\nOLD_PWD=`pwd`\r\necho $HYPERIC_HOME\r\nexec $HYPERIC_HOME\/bin\/hq-agent.sh $1\r\nsleep 1 # allows prompt to return\r\ncd $OLD_PWD\r\n}\r\nstart() {\r\nexecCommand \"start\"\r\n}\r\nstop() {\r\nexecCommand \"stop\"\r\n}\r\nstatus() {\r\nexecCommand \"status\"\r\n}\r\ncase \"$1\" in\r\nstart)\r\nstart\r\nRETVAL=0\r\n;;\r\nstop)\r\nstop\r\nRETVAL=0\r\n;;\r\nstatus)\r\nstatus\r\nRETVAL=0\r\n;;\r\nrestart)\r\nstop\r\nsleep 10 # since stop is backgrounded\r\nstart\r\n;;\r\nesac\r\nexit 0<\/pre>\n<p>&nbsp;<\/p>\n<p><span style=\"font-size: 24px;\">8) Einloggen und sich freuen:\u00a0<\/span><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/media.screensteps.me\/tbaublys\/f7ewtp\/8--login-and-enjoy-hyperic.png?1396345162\" alt=\"8) Login and enjoy hyperic\" width=\"1113\" height=\"501\" \/><\/p>\n<\/div>\n<\/div>\n<div class=\"screensteps-step\">\n<h2>9) Die neue &#8220;Platform&#8221; akzeptieren:<\/h2>\n<div class=\"screensteps-media\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/media.screensteps.me\/tbaublys\/f7ewtp\/9--add-to-inventory.png?1396345164\" alt=\"9) Add to inventory\" width=\"1106\" height=\"787\" \/><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Dies ist eine Kurzanleitung zur Installation des Hyperic-Servers und Agenten auf CentOS 6.5. Die PostgreSQL Datenbank wird vorinstalliert und kann auf dem gleichen oder einem separaten System installiert werden. Somit wird die l\u00e4stige knallgelbe Meldung: &#8220;The Hyperic built-in database is provided for EVALUATION PURPOSES ONLY. For production purposes use vPostgreSQL.&#8221; vermieden.<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"categories":[55],"tags":[],"class_list":["post-928","post","type-post","status-publish","format-standard","hentry","category-hyperic"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Installation von Hyperic 5.8.1 mit PostgreSQL &#187; vrealize.it - TechBlog VMware SDDC<\/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:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installation von Hyperic 5.8.1 mit PostgreSQL &#187; vrealize.it - TechBlog VMware SDDC\" \/>\n<meta property=\"og:description\" content=\"Dies ist eine Kurzanleitung zur Installation des Hyperic-Servers und Agenten auf CentOS 6.5. Die PostgreSQL Datenbank wird vorinstalliert und kann auf dem gleichen oder einem separaten System installiert werden. Somit wird die l\u00e4stige knallgelbe Meldung: &#8220;The Hyperic built-in database is provided for EVALUATION PURPOSES ONLY. For production purposes use vPostgreSQL.&#8221; vermieden.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/\" \/>\n<meta property=\"og:site_name\" content=\"vrealize.it - TechBlog VMware SDDC\" \/>\n<meta property=\"article:published_time\" content=\"2014-04-01T10:12:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2015-05-08T14:47:19+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/media.screensteps.me\/tbaublys\/f7ewtp\/8--login-and-enjoy-hyperic.png?1396345162\" \/>\n<meta name=\"author\" content=\"Tomas Baublys\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tomas Baublys\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/\"},\"author\":{\"name\":\"Tomas Baublys\",\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/#\\\/schema\\\/person\\\/f8910a5a0c7f1d547783171cd2b40bdb\"},\"headline\":\"Installation von Hyperic 5.8.1 mit PostgreSQL\",\"datePublished\":\"2014-04-01T10:12:31+00:00\",\"dateModified\":\"2015-05-08T14:47:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/\"},\"wordCount\":366,\"commentCount\":2,\"image\":{\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/media.screensteps.me\\\/tbaublys\\\/f7ewtp\\\/8--login-and-enjoy-hyperic.png?1396345162\",\"articleSection\":[\"Hyperic\"],\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/\",\"url\":\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/\",\"name\":\"Installation von Hyperic 5.8.1 mit PostgreSQL &#187; vrealize.it - TechBlog VMware SDDC\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/media.screensteps.me\\\/tbaublys\\\/f7ewtp\\\/8--login-and-enjoy-hyperic.png?1396345162\",\"datePublished\":\"2014-04-01T10:12:31+00:00\",\"dateModified\":\"2015-05-08T14:47:19+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/#\\\/schema\\\/person\\\/f8910a5a0c7f1d547783171cd2b40bdb\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/#primaryimage\",\"url\":\"http:\\\/\\\/media.screensteps.me\\\/tbaublys\\\/f7ewtp\\\/8--login-and-enjoy-hyperic.png?1396345162\",\"contentUrl\":\"http:\\\/\\\/media.screensteps.me\\\/tbaublys\\\/f7ewtp\\\/8--login-and-enjoy-hyperic.png?1396345162\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/2014\\\/04\\\/01\\\/installation-von-hyperic-5-8-1-mit-postgresql\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/vrealize.it\\\/de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installation von Hyperic 5.8.1 mit PostgreSQL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/#website\",\"url\":\"https:\\\/\\\/vrealize.it\\\/de\\\/\",\"name\":\"vrealize.it - TechBlog VMware SDDC\",\"description\":\"Information zu sicherem Hybrid und Multi-Cloud Computing - dispruptive Technologien im IT- Umfeld\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vrealize.it\\\/de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/vrealize.it\\\/de\\\/#\\\/schema\\\/person\\\/f8910a5a0c7f1d547783171cd2b40bdb\",\"name\":\"Tomas Baublys\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c2126b2d052bf7dbb1a19e7d27f15879e8f3bcb3d54ffaf21e00ac8f84c554c0?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c2126b2d052bf7dbb1a19e7d27f15879e8f3bcb3d54ffaf21e00ac8f84c554c0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c2126b2d052bf7dbb1a19e7d27f15879e8f3bcb3d54ffaf21e00ac8f84c554c0?s=96&d=mm&r=g\",\"caption\":\"Tomas Baublys\"},\"url\":\"https:\\\/\\\/vrealize.it\\\/de\\\/author\\\/tbaublys\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installation von Hyperic 5.8.1 mit PostgreSQL &#187; vrealize.it - TechBlog VMware SDDC","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:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/","og_locale":"de_DE","og_type":"article","og_title":"Installation von Hyperic 5.8.1 mit PostgreSQL &#187; vrealize.it - TechBlog VMware SDDC","og_description":"Dies ist eine Kurzanleitung zur Installation des Hyperic-Servers und Agenten auf CentOS 6.5. Die PostgreSQL Datenbank wird vorinstalliert und kann auf dem gleichen oder einem separaten System installiert werden. Somit wird die l\u00e4stige knallgelbe Meldung: &#8220;The Hyperic built-in database is provided for EVALUATION PURPOSES ONLY. For production purposes use vPostgreSQL.&#8221; vermieden.","og_url":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/","og_site_name":"vrealize.it - TechBlog VMware SDDC","article_published_time":"2014-04-01T10:12:31+00:00","article_modified_time":"2015-05-08T14:47:19+00:00","og_image":[{"url":"http:\/\/media.screensteps.me\/tbaublys\/f7ewtp\/8--login-and-enjoy-hyperic.png?1396345162","type":"","width":"","height":""}],"author":"Tomas Baublys","twitter_card":"summary_large_image","twitter_misc":{"Verfasst von":"Tomas Baublys","Gesch\u00e4tzte Lesezeit":"4\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/#article","isPartOf":{"@id":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/"},"author":{"name":"Tomas Baublys","@id":"https:\/\/vrealize.it\/de\/#\/schema\/person\/f8910a5a0c7f1d547783171cd2b40bdb"},"headline":"Installation von Hyperic 5.8.1 mit PostgreSQL","datePublished":"2014-04-01T10:12:31+00:00","dateModified":"2015-05-08T14:47:19+00:00","mainEntityOfPage":{"@id":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/"},"wordCount":366,"commentCount":2,"image":{"@id":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/#primaryimage"},"thumbnailUrl":"http:\/\/media.screensteps.me\/tbaublys\/f7ewtp\/8--login-and-enjoy-hyperic.png?1396345162","articleSection":["Hyperic"],"inLanguage":"de","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/","url":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/","name":"Installation von Hyperic 5.8.1 mit PostgreSQL &#187; vrealize.it - TechBlog VMware SDDC","isPartOf":{"@id":"https:\/\/vrealize.it\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/#primaryimage"},"image":{"@id":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/#primaryimage"},"thumbnailUrl":"http:\/\/media.screensteps.me\/tbaublys\/f7ewtp\/8--login-and-enjoy-hyperic.png?1396345162","datePublished":"2014-04-01T10:12:31+00:00","dateModified":"2015-05-08T14:47:19+00:00","author":{"@id":"https:\/\/vrealize.it\/de\/#\/schema\/person\/f8910a5a0c7f1d547783171cd2b40bdb"},"breadcrumb":{"@id":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/#primaryimage","url":"http:\/\/media.screensteps.me\/tbaublys\/f7ewtp\/8--login-and-enjoy-hyperic.png?1396345162","contentUrl":"http:\/\/media.screensteps.me\/tbaublys\/f7ewtp\/8--login-and-enjoy-hyperic.png?1396345162"},{"@type":"BreadcrumbList","@id":"https:\/\/vrealize.it\/de\/2014\/04\/01\/installation-von-hyperic-5-8-1-mit-postgresql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/vrealize.it\/de\/"},{"@type":"ListItem","position":2,"name":"Installation von Hyperic 5.8.1 mit PostgreSQL"}]},{"@type":"WebSite","@id":"https:\/\/vrealize.it\/de\/#website","url":"https:\/\/vrealize.it\/de\/","name":"vrealize.it - TechBlog VMware SDDC","description":"Information zu sicherem Hybrid und Multi-Cloud Computing - dispruptive Technologien im IT- Umfeld","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vrealize.it\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Person","@id":"https:\/\/vrealize.it\/de\/#\/schema\/person\/f8910a5a0c7f1d547783171cd2b40bdb","name":"Tomas Baublys","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/secure.gravatar.com\/avatar\/c2126b2d052bf7dbb1a19e7d27f15879e8f3bcb3d54ffaf21e00ac8f84c554c0?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c2126b2d052bf7dbb1a19e7d27f15879e8f3bcb3d54ffaf21e00ac8f84c554c0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c2126b2d052bf7dbb1a19e7d27f15879e8f3bcb3d54ffaf21e00ac8f84c554c0?s=96&d=mm&r=g","caption":"Tomas Baublys"},"url":"https:\/\/vrealize.it\/de\/author\/tbaublys\/"}]}},"_links":{"self":[{"href":"https:\/\/vrealize.it\/de\/wp-json\/wp\/v2\/posts\/928","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vrealize.it\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vrealize.it\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vrealize.it\/de\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/vrealize.it\/de\/wp-json\/wp\/v2\/comments?post=928"}],"version-history":[{"count":11,"href":"https:\/\/vrealize.it\/de\/wp-json\/wp\/v2\/posts\/928\/revisions"}],"predecessor-version":[{"id":1112,"href":"https:\/\/vrealize.it\/de\/wp-json\/wp\/v2\/posts\/928\/revisions\/1112"}],"wp:attachment":[{"href":"https:\/\/vrealize.it\/de\/wp-json\/wp\/v2\/media?parent=928"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vrealize.it\/de\/wp-json\/wp\/v2\/categories?post=928"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vrealize.it\/de\/wp-json\/wp\/v2\/tags?post=928"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}