{"id":2781,"date":"2012-10-15T08:17:00","date_gmt":"2012-10-15T06:17:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/"},"modified":"2012-10-15T08:17:00","modified_gmt":"2012-10-15T06:17:00","slug":"java-virtual-machine-diagnostics-startingstopping-jvmd-manager","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/","title":{"rendered":"Java Virtual Machine Diagnostics: Starting\/stopping JVMD manager"},"content":{"rendered":"<p>Although the managed server on which\u00a0Java Virtual Machine Diagnostics (JVMD) manager is deployed is configured to use the the Node Manager like OMS and admin server, it is not started automatically with OMS. In this post, I will describe how to start JVMD manager\u00a0automatically when the physical server boots.<\/p>\n<p>To implement the script, several steps have to be executed:<\/p>\n<ul>\n<li>Creation of a config file containing the encrypted password to connect to the NodeManager<\/li>\n<li>Test the start\/stop WLST commands<\/li>\n<li>Creation of the python scripts<\/li>\n<li>Creation of the init script<\/li>\n<\/ul>\n<h3>Config file creation<\/h3>\n<p>To avoid using a password in clear text, a config file containing the encrypted password will be created.<br \/>\nSet the MW_HOME environment variable.<\/p>\n<p><samp>export MW_HOME=\/u01\/app\/oracle\/Middleware<\/samp><\/p>\n<p>Create a script folder:<br \/>\n<code>mkdir $MW_HOME\/script<\/code><\/p>\n<p>Connect to the NodeManager (in the example, nmpassword is the password to access the nodemanager):<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">source $MW_HOME\/wlserver_10.3\/server\/bin\/setWLSEnv.sh\njava weblogic.WLST\nnmConnect('nodemanager','nmpassword','vmtestoraem12c','7403','GCDomain','\/u01\/app\/oracle\/Middleware\/gc_inst\/user_projects\/domains\/GCDomain\/','SSL')<\/pre>\n<p>Create files to avoid using the password in clear text:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">storeUserConfig(userConfigFile='\/u01\/app\/oracle\/Middleware\/script\/userconfigNM.secure',userKeyFile='\/u01\/app\/oracle\/Middleware\/script\/userkeyNM.secure',nm='true')\nnmDisconnect()<\/pre>\n<p>Test the encrypted password:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">nmConnect(userConfigFile='\/u01\/app\/oracle\/Middleware\/script\/userconfigNM.secure',userKeyFile='\/u01\/app\/oracle\/Middleware\/script\/userkeyNM.secure', host='vmtestoraem12c', port='7403', domainName='GCDomain', domainDir='\/u01\/app\/oracle\/Middleware\/gc_inst\/user_projects\/domains\/GCDomain', nmType='SSL')<\/pre>\n<h3>Test wlst start\/stop command<\/h3>\n<p>Before creating a python script, test the start and stop commands:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">nmStart('EMGC_JVMDMANAGER1')\nnmKill(EMGC_JVMDMANAGER1')<\/pre>\n<h3>Create the python scripts<\/h3>\n<p>The python scripts will be used to start and stop the WLS managed server where JVMD manager is deployed:<br \/>\nStart script:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\"># start_EMGC_JVMDMANAGER1.py 1.0 09\/24\/2012\n#\n# file: start_EMGC_JVMDMANAGER1.py\n# purpose: start the EMGC_JVMDMANAGER WLS managed server because it is not sta\nrted automatically by the emctl command\n#\n# Author: dbi_services (GWI)\n# Version: 1.0 09\/24\/2012\n#\n############################################\n\n# connect to the NodeManager using an encrypted file\nnmConnect(userConfigFile='\/u01\/app\/oracle\/Middleware\/script\/userconfigNM.secure',userKeyFile='\/u01\/app\/oracle\/Middleware\/script\/userkeyNM.secure', host='vmtestoraem12c', port='7403', domainName='GCDomain', domainDir='\/u01\/app\/oracle\/Middleware\/gc_inst\/user_projects\/domains\/GCDomain', nmType='SSL')\n\n# start the managed server\nnmStart('EMGC_JVMDMANAGER1')\n\n# disconnect from nodemanager\nnmDisconnect()<\/pre>\n<p>Stop script:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\"># stop_EMGC_JVMDMANAGER1.py 1.0 09\/24\/2012\n#\n# file: stop_EMGC_JVMDMANAGER1.py\n# purpose: stop the EMGC_JVMDMANAGER WLS managed server because it is not stopped automatically by the emctl command\n#\n# Author: dbi_services (GWI)\n# Version: 1.0 09\/24\/2012\n#\n############################################\n\n# connect to the NodeManager using an encrypted file\nnmConnect(userConfigFile='\/u01\/app\/oracle\/Middleware\/script\/userconfigNM.secure',userKeyFile='\/u01\/app\/oracle\/Middleware\/script\/userkeyNM.secure', host='vmtestoraem12c', port='7403', domainName='GCDomain', domainDir='\/u01\/app\/oracle\/Middleware\/gc_inst\/user_projects\/domains\/GCDomain', nmType='SSL')\n\n# stop the managed server\nnmKill('EMGC_JVMDMANAGER1')\n\n# disconnect from nodemanager\nnmDisconnect()<\/pre>\n<p>Test the python scripts:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">java weblogic.WLST \/u01\/app\/oracle\/Middleware\/script\/start_EMGC_JVMDMANAGER1.py\njava weblogic.WLST \/u01\/app\/oracle\/Middleware\/script\/stop_EMGC_JVMDMANAGER1.py<\/pre>\n<h3>Create an init script<\/h3>\n<p>Under \/etc\/init.d, create the jvmd script:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\"># jvmd.sh 1.0 09\/24\/2012\n#\n# file: jvmd\n# purpose: start the EMGC_JVMDMANAGER WLS managed server because this is not sta\nrted automatically by the emctl command\n#\n# Author: dbi_services (GWI)\n# Version: 1.0 09\/24\/2012\n#\n# chkconfig:\u00a0\u00a0 345 85 15\n############################################\n###BEGIN INIT INFO\n# Provides: jvmd\n# Required-Start:\n# Required-Stop:\n# Should-Start:\n# Should-Stop:\n# Default-Start: 3 4 5\n# Default-Stop: 0 1 2 6\n# Short-Description: EMGC_JVMDMANAGER WLS managed server\n# Description: Start and stop EMGC_JVMDMANAGER WLS managed server\n### END INIT INFO\n# set Weblogic environment defining CLASSPATH and LD_LIBRARY_PATH\n# to start\/stop various components.\nexport MW_HOME=\/u01\/app\/oracle\/Middleware\n#\nsource $MW_HOME\/wlserver_10.3\/server\/bin\/setWLSEnv.sh &gt; \/dev\/null\nSCRIPTDIR=$MW_HOME\/script\n\nstart() {\necho \"start EMGC_JVMDMANAGER1\"\njava weblogic.WLST $SCRIPTDIR\/start_EMGC_JVMDMANAGER1.py\n}\n\nstop() {\necho \"stop EMGC_JVMDMANAGER1\"\njava weblogic.WLST $SCRIPTDIR\/stop_EMGC_JVMDMANAGER1.py\n}\n\ncase \"$1\" in\n\u00a0\u00a0\u00a0 start)\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 start\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ;;\n\u00a0\u00a0\u00a0 stop)\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 stop\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 ;;\n\u00a0\u00a0\u00a0 *)\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 echo -n \"Usage: $0 {start|stop}\"\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 exit 2\nesac\nexit $?<\/pre>\n<p>Change the permission:<br \/>\n<samp><code>chmod u+x jvmd<\/code><\/samp><\/p>\n<p>Create the link in the runlevel folder:<br \/>\n<code>\/sbin\/chkconfig --add jvmd<\/code><\/p>\n<p>Test the script:<br \/>\n<samp><code>\/etc\/rc3.d\/S85jvmd start<\/code><\/samp><br \/>\n<samp>\/etc\/rc3.d\/S85jvmd stop<\/samp><\/p>\n<p>At the end, reboot your server and check if the JVMD manager is up and can be used through the OMS admin console.<br \/>\nIn case you have to stop\/start the OMS and JVMD, of course you can do it manually:<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">java weblogic.WLST \/u01\/app\/oracle\/Middleware\/script\/start_EMGC_JVMDMANAGER1.py\nemctl stop oms -all\n\nemctl start oms\njava weblogic.WLST \/u01\/app\/oracle\/Middleware\/script\/stop_EMGC_JVMDMANAGER1.py<\/pre>\n<p>As JVMD manager can be installed on a WLS domain other than the OMS domain, I do not think Oracle will ever integrate the start\/stop procedure in the OMS by changing the startOMS.py script.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Although the managed server on which\u00a0Java Virtual Machine Diagnostics (JVMD) manager is deployed is configured to use the the Node Manager like OMS and admin server, it is not started automatically with OMS. In this post, I will describe how to start JVMD manager\u00a0automatically when the physical server boots. To implement the script, several steps [&hellip;]<\/p>\n","protected":false},"author":24,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197],"tags":[336,334,143,218],"type_dbi":[],"class_list":["post-2781","post","type-post","status-publish","format-standard","hentry","category-application-integration-middleware","tag-jvmd","tag-middleware","tag-monitoring","tag-oracle-enterprise-manager-cloud-12c"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Java Virtual Machine Diagnostics: Starting\/stopping JVMD manager - dbi Blog<\/title>\n<meta name=\"description\" content=\"Although the managed server on which Java Virtual Machine Diagnostics (JVMD) manager is deployed is configured to use the the Node Manager like OMS and admin server, it is not started automatically with OMS. In this post, I will describe how to start JVMD manager automatically when the physical server boots.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Java Virtual Machine Diagnostics: Starting\/stopping JVMD manager\" \/>\n<meta property=\"og:description\" content=\"Although the managed server on which Java Virtual Machine Diagnostics (JVMD) manager is deployed is configured to use the the Node Manager like OMS and admin server, it is not started automatically with OMS. In this post, I will describe how to start JVMD manager automatically when the physical server boots.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2012-10-15T06:17:00+00:00\" \/>\n<meta name=\"author\" content=\"G\u00e9rard Wisson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"G\u00e9rard Wisson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/\"},\"author\":{\"name\":\"G\u00e9rard Wisson\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ad54b5e621903122c00c6b7921c6ab85\"},\"headline\":\"Java Virtual Machine Diagnostics: Starting\/stopping JVMD manager\",\"datePublished\":\"2012-10-15T06:17:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/\"},\"wordCount\":321,\"commentCount\":0,\"keywords\":[\"JVMD\",\"Middleware\",\"Monitoring\",\"Oracle Enterprise Manager Cloud 12c\"],\"articleSection\":[\"Application integration &amp; Middleware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/\",\"name\":\"Java Virtual Machine Diagnostics: Starting\/stopping JVMD manager - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2012-10-15T06:17:00+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ad54b5e621903122c00c6b7921c6ab85\"},\"description\":\"Although the managed server on which Java Virtual Machine Diagnostics (JVMD) manager is deployed is configured to use the the Node Manager like OMS and admin server, it is not started automatically with OMS. In this post, I will describe how to start JVMD manager automatically when the physical server boots.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java Virtual Machine Diagnostics: Starting\/stopping JVMD manager\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ad54b5e621903122c00c6b7921c6ab85\",\"name\":\"G\u00e9rard Wisson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g\",\"caption\":\"G\u00e9rard Wisson\"},\"description\":\"G\u00e9rard Wisson has more than ten years of experience in Enterprise Content Management (ECM) with Documentum as well as in Oracle WebLogic and Java EE \/ J2EE infrastructures. He is specialized in ECM infrastructure services such as installation, upgrade, high availability, and administration as well as in Oracle WebLogic services such as installation, configuration, and management. He is very experienced in the monitoring and optimization of Java EE \/ J2EE infrastructures with Grid\/Cloud Control and JVMD. G\u00e9rard Wisson is certified Oracle Weblogic Server 11g System Administrator and Oracle Certified Associate. Prior to joining dbi services, G\u00e9rard Wisson was Senior Consultant at Solfit in Basel. He holds a diploma in Electrical Engineering from the University of Strasbourg (F). His branch-related experience covers Financial Services \/ Banking, Chemicals &amp; Pharmaceuticals, etc.\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/gerard-wisson\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Java Virtual Machine Diagnostics: Starting\/stopping JVMD manager - dbi Blog","description":"Although the managed server on which Java Virtual Machine Diagnostics (JVMD) manager is deployed is configured to use the the Node Manager like OMS and admin server, it is not started automatically with OMS. In this post, I will describe how to start JVMD manager automatically when the physical server boots.","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:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/","og_locale":"en_US","og_type":"article","og_title":"Java Virtual Machine Diagnostics: Starting\/stopping JVMD manager","og_description":"Although the managed server on which Java Virtual Machine Diagnostics (JVMD) manager is deployed is configured to use the the Node Manager like OMS and admin server, it is not started automatically with OMS. In this post, I will describe how to start JVMD manager automatically when the physical server boots.","og_url":"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/","og_site_name":"dbi Blog","article_published_time":"2012-10-15T06:17:00+00:00","author":"G\u00e9rard Wisson","twitter_card":"summary_large_image","twitter_misc":{"Written by":"G\u00e9rard Wisson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/"},"author":{"name":"G\u00e9rard Wisson","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ad54b5e621903122c00c6b7921c6ab85"},"headline":"Java Virtual Machine Diagnostics: Starting\/stopping JVMD manager","datePublished":"2012-10-15T06:17:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/"},"wordCount":321,"commentCount":0,"keywords":["JVMD","Middleware","Monitoring","Oracle Enterprise Manager Cloud 12c"],"articleSection":["Application integration &amp; Middleware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/","url":"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/","name":"Java Virtual Machine Diagnostics: Starting\/stopping JVMD manager - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2012-10-15T06:17:00+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ad54b5e621903122c00c6b7921c6ab85"},"description":"Although the managed server on which Java Virtual Machine Diagnostics (JVMD) manager is deployed is configured to use the the Node Manager like OMS and admin server, it is not started automatically with OMS. In this post, I will describe how to start JVMD manager automatically when the physical server boots.","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/java-virtual-machine-diagnostics-startingstopping-jvmd-manager\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Java Virtual Machine Diagnostics: Starting\/stopping JVMD manager"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/ad54b5e621903122c00c6b7921c6ab85","name":"G\u00e9rard Wisson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1eb607e2c436690f1f57c55db47a3fabb0d11955ea9a2510605d5e5813632408?s=96&d=mm&r=g","caption":"G\u00e9rard Wisson"},"description":"G\u00e9rard Wisson has more than ten years of experience in Enterprise Content Management (ECM) with Documentum as well as in Oracle WebLogic and Java EE \/ J2EE infrastructures. He is specialized in ECM infrastructure services such as installation, upgrade, high availability, and administration as well as in Oracle WebLogic services such as installation, configuration, and management. He is very experienced in the monitoring and optimization of Java EE \/ J2EE infrastructures with Grid\/Cloud Control and JVMD. G\u00e9rard Wisson is certified Oracle Weblogic Server 11g System Administrator and Oracle Certified Associate. Prior to joining dbi services, G\u00e9rard Wisson was Senior Consultant at Solfit in Basel. He holds a diploma in Electrical Engineering from the University of Strasbourg (F). His branch-related experience covers Financial Services \/ Banking, Chemicals &amp; Pharmaceuticals, etc.","url":"https:\/\/www.dbi-services.com\/blog\/author\/gerard-wisson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/2781","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/24"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=2781"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/2781\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=2781"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=2781"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=2781"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=2781"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}