{"id":10266,"date":"2017-06-16T13:39:16","date_gmt":"2017-06-16T11:39:16","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/"},"modified":"2017-06-16T13:39:16","modified_gmt":"2017-06-16T11:39:16","slug":"oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/","title":{"rendered":"OUD 11.1.2.3 &#8211; How to create an OUD Start\/Stop\/Status script on Oracle Linux 6"},"content":{"rendered":"<h2>By William Sescu<\/h2>\n<p>One of the questions that pops up immediately, after you have installed your OUD successfully is how to integrate it into the automatic startup routines of the OS.<\/p>\n<p>My example here show how to do it on Oracle Linux 6. On Oracle Linux 7 it looks a little different. Fortunately, Oracle delivers a script called &#8220;create-rc-script&#8221;, which can be found in your asinst home directory. It lets you specify the user name under which the OUD will run, the JAVA home and few more stuff. The whole documentation can be found under the following link.<\/p>\n<p><a href=\"https:\/\/docs.oracle.com\/cd\/E52734_01\/oud\/OUDAG\/appendix_cli.htm#OUDAG01144\">https:\/\/docs.oracle.com\/cd\/E52734_01\/oud\/OUDAG\/appendix_cli.htm#OUDAG01144<\/a><\/p>\n<p>Running &#8220;&#8211;help&#8221; gives you all the options.<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">$ cat \/etc\/oracle-release\nOracle Linux Server release 6.9\n\n$ .\/create-rc-script -V\nOracle Unified Directory 11.1.2.3.170418\nBuild 20170206221556Z\n\n$ .\/create-rc-script --help\nCreate an RC script that may be used to start, stop, and restart the Directory\nServer on UNIX-based systems\n\nUsage:  create-rc-script  {options}\n        where {options} include:\n\n-f, --outputFile {path}\n    The path to the output file to create\n-u, --userName {userName}\n    The name of the user account under which the server should run\n-j, --javaHome {path}\n    The path to the Java installation that should be used to run the server\n-J, --javaArgs {args}\n    A set of arguments that should be passed to the JVM when running the server\n\nGeneral Options\n\n-V, --version\n    Display Directory Server version information\n-?, -H, --help\n    Display this usage information<\/pre>\n<p>Take care that you start the &#8220;create-rc-script&#8221; script from your asinst_1 home, and not from the Oracle_OUD1 home. The reason for that, is that the &#8220;create-rc-script&#8221; sets the working directory to your current directory. &#8220;WORKING_DIR=`pwd`&#8221;, and if not started from the correct directory, you might end up with a not working start\/stop script.<\/p>\n<p>So .. to do it correctly, switch to your OUD asinst home first and run it from there. I am using here only a few options. The JAVA home, the user name under which the OUD will run and the output file.<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">$ cd \/u01\/app\/oracle\/product\/middleware\/asinst_1\/OUD\/bin\n\n$ pwd\n\/u01\/app\/oracle\/product\/middleware\/asinst_1\/OUD\/bin\n\n$ .\/create-rc-script --userName oracle --javaHome \/u01\/app\/oracle\/product\/middleware\/jdk --outputFile \/home\/oracle\/bin\/oud<\/pre>\n<p>The output generated by the script will be the start\/stop script.<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">$ pwd\n\/home\/oracle\/bin\n\n$ ls -l\ntotal 4\n-rwxr-xr-x. 1 oracle oinstall 862 Jun 16 13:35 oud\n\n$ cat oud\n#!\/bin\/sh\n#\n# Copyright (c) 2012, Oracle and\/or its affiliates. All rights reserved.\n#\n#\n# chkconfig: 345 90 30\n# description: Oracle Unified Directory startup script\n#\n\n# Set the path to the Oracle Unified Directory instance to manage\nINSTALL_ROOT=\"\/u01\/app\/oracle\/product\/middleware\/asinst_1\/OUD\"\nexport INSTALL_ROOT\n\n# Specify the path to the Java installation to use\nOPENDS_JAVA_HOME=\"\/u01\/app\/oracle\/product\/middleware\/jdk\"\nexport OPENDS_JAVA_HOME\n\n# Determine what action should be performed on the server\ncase \"${1}\" in\nstart)\n  \/bin\/su - oracle -- \"${INSTALL_ROOT}\/bin\/start-ds\" --quiet\n  exit ${?}\n  ;;\nstop)\n  \/bin\/su - oracle -- \"${INSTALL_ROOT}\/bin\/stop-ds\" --quiet\n  exit ${?}\n  ;;\nrestart)\n  \/bin\/su - oracle -- \"${INSTALL_ROOT}\/bin\/stop-ds\" --restart --quiet\n  exit ${?}\n  ;;\n*)\n  echo \"Usage:  $0 { start | stop | restart }\"\n  exit 1\n  ;;\nesac<\/pre>\n<p>The generated start\/stop script looks quite complete. The only thing missing is the &#8220;status&#8221; section which is quite useful from my point of view. To add the status section, we can use the &#8220;status&#8221; script, which is also part of the OUD installation.<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">$ .\/status --help\nThis utility can be used to display basic server information\n\nUsage:  status {options}\n        where {options} include:\n\n\nLDAP Connection Options\n\n-D, --bindDN {bindDN}\n    DN to use to bind to the server\n    Default value: cn=Directory Manager\n-j, --bindPasswordFile {bindPasswordFile}\n    Bind password file\n-o, --saslOption {name=value}\n    SASL bind options\n-X, --trustAll\n    Trust all server SSL certificates\n-P, --trustStorePath {trustStorePath}\n    Certificate trust store path\n-U, --trustStorePasswordFile {path}\n    Certificate trust store PIN file\n-K, --keyStorePath {keyStorePath}\n    Certificate key store path\n-u, --keyStorePasswordFile {keyStorePasswordFile}\n    Certificate key store PIN file\n-N, --certNickname {nickname}\n    Nickname of certificate for SSL client authentication\n--connectTimeout {timeout}\n    Maximum length of time (in milliseconds) that can be taken to establish a\n    connection.  Use '0' to specify no time out\n    Default value: 30000\n\nUtility Input\/Output Options\n\n-n, --no-prompt\n    Use non-interactive mode.  If data in the command is missing, the user is\n    not prompted and the tool will fail\n-s, --script-friendly\n    Use script-friendly mode\n--propertiesFilePath {propertiesFilePath}\n    Path to the file containing default property values used for command line\n    arguments\n--noPropertiesFile\n    No properties file will be used to get default command line argument values\n-r, --refresh {period}\n    When this argument is specified, the status command will display its\n    contents periodically.  Used to specify the period (in seconds) between two\n    displays of the status\n\nGeneral Options\n\n-V, --version\n    Display Directory Server version information\n-?, -H, --help\n    Display this usage information<\/pre>\n<p>Take care. Per default, the status utility is an interactive one, and it asks you for the user bind DN and the password. So, the interactive version of that script is not useful for our script.<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">$ .\/status\n\n&gt;&gt;&gt;&gt; Specify Oracle Unified Directory LDAP connection parameters\n\nAdministrator user bind DN [cn=Directory Manager]:\n\nPassword for user 'cn=Directory Manager':\n\n          --- Server Status ---\nServer Run Status:        Started\nOpen Connections:         6\n\n          --- Server Details ---\nHost Name:                dbidg01\nAdministrative Users:     cn=Directory Manager\nInstallation Path:        \/u01\/app\/oracle\/product\/middleware\/Oracle_OUD1\nInstance Path:            \/u01\/app\/oracle\/product\/middleware\/asinst_1\/OUD\nVersion:                  Oracle Unified Directory 11.1.2.3.170418\nJava Version:             1.7.0_141\nAdministration Connector: Port 4444 (LDAPS)\n\n          --- Connection Handlers ---\nAddress:Port : Protocol               : State\n-------------:------------------------:---------\n--           : LDIF                   : Disabled\n8899         : Replication (secure)   : Enabled\n0.0.0.0:161  : SNMP                   : Disabled\n0.0.0.0:1389 : LDAP (allows StartTLS) : Enabled\n0.0.0.0:1636 : LDAPS                  : Enabled\n0.0.0.0:1689 : JMX                    : Disabled\n...\n...<\/pre>\n<p>And we need to do some adjustments, like in the following example.<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">.\/status --trustAll --no-prompt --bindDN cn=\"Directory Manager\" --bindPasswordFile \/home\/oracle\/.oudpwd | head -24<\/pre>\n<p>OK. To complete the script, we can add the status section to the script.<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">$ cat oud\n\n#!\/bin\/sh\n#\n# Copyright (c) 2012, Oracle and\/or its affiliates. All rights reserved.\n#\n#\n# chkconfig: 345 90 30\n# description: Oracle Unified Directory startup script\n#\n\n# Set the path to the Oracle Unified Directory instance to manage\nINSTALL_ROOT=\"\/u01\/app\/oracle\/product\/middleware\/asinst_1\/OUD\"\nexport INSTALL_ROOT\n\n# Specify the path to the Java installation to use\nOPENDS_JAVA_HOME=\"\/u01\/app\/oracle\/product\/middleware\/jdk\"\nexport OPENDS_JAVA_HOME\n\n# Determine what action should be performed on the server\ncase \"${1}\" in\nstart)\n  \/bin\/su - oracle -- \"${INSTALL_ROOT}\/bin\/start-ds\" --quiet\n  exit ${?}\n  ;;\nstop)\n  \/bin\/su - oracle -- \"${INSTALL_ROOT}\/bin\/stop-ds\" --quiet\n  exit ${?}\n  ;;\nrestart)\n  \/bin\/su - oracle -- \"${INSTALL_ROOT}\/bin\/stop-ds\" --restart --quiet\n  exit ${?}\n  ;;\nstatus)\n  \/bin\/su - oracle -- \"${INSTALL_ROOT}\/bin\/status\" --trustAll --no-prompt --bindDN cn=\"Directory Manager\" --bindPasswordFile \/home\/oracle\/.oudpwd | head -24\n  exit ${?}\n  ;;\n*)\n  echo \"Usage:  $0 { start | stop | restart | status }\"\n  exit 1\n  ;;\nesac<\/pre>\n<p>Last but not least, we need to move it with the root user to the \/etc\/init.d directory and add it via chkconfig.<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\"># mv \/home\/oracle\/bin\/oud \/etc\/init.d\/\n# chkconfig --add oud\n\n# chkconfig --list | grep oud\noud             0:off   1:off   2:off   3:on    4:on    5:on    6:off<\/pre>\n<p>That&#8217;s all. The OUD part is done now. But what about the ODSM? We want the WebLogic domain to startup automatically as well. For doing so, we need another script.<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\">$ cat \/home\/oracle\/bin\/weblogic\n\n#!\/bin\/sh\n#\n#\n# chkconfig: 345 90 30\n# description: WebLogic 10.3.6 startup script\n#\n\n# Specify the path to the Java installation to use\nJAVA_HOME=\"\/u01\/app\/oracle\/product\/middleware\/jdk\"\nexport JAVA_HOME\n\nBASE_DOMAIN=\"\/u01\/app\/oracle\/product\/middleware\/user_projects\/domains\/base_domain\"\nexport BASE_DOMAIN\n\n# Determine what action should be performed on the server\ncase \"${1}\" in\nstart)\n  \/bin\/su - oracle -c \"nohup ${BASE_DOMAIN}\/bin\/startWebLogic.sh &amp;\"\n  exit ${?}\n  ;;\nstop)\n  \/bin\/su - oracle -c \"${BASE_DOMAIN}\/bin\/stopWebLogic.sh\"\n  exit ${?}\n  ;;\nrestart)\n  \/bin\/su - oracle -c \"${BASE_DOMAIN}\/bin\/stopWebLogic.sh\"\n  \/bin\/su - oracle -c \"nohup ${BASE_DOMAIN}\/bin\/startWebLogic.sh &amp;\"\n  exit ${?}\n  ;;\n*)\n  echo \"Usage:  $0 { start | stop | restart }\"\n  exit 1\n  ;;\nesac<\/pre>\n<p>Now it&#8217;s time to move the weblogic to the start routines as well.<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\"># mv \/home\/oracle\/bin\/weblogic \/etc\/init.d\/\n# chkconfig --add weblogic\n# chkconfig --list | grep weblogic\nweblogic        0:off   1:off   2:off   3:on    4:on    5:on    6:off<\/pre>\n<p>After everything is setup, it is time to test it. \ud83d\ude09<\/p>\n<pre class=\"brush: actionscript3; gutter: true; first-line: 1\"># chkconfig --list | egrep '(weblogic|oud)'\noud             0:off   1:off   2:off   3:on    4:on    5:on    6:off\nweblogic        0:off   1:off   2:off   3:on    4:on    5:on    6:off\n\n# init 6<\/pre>\n<p>Now just check if everything came up correctly.<\/p>\n<h3>Conclusion<\/h3>\n<p>The OUD comes with a script &#8220;create-rc-script&#8221; which is quite useful. However, in case you have the OSDM and you want the OUD status section as well, some adjustments have to be done.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>By William Sescu One of the questions that pops up immediately, after you have installed your OUD successfully is how to integrate it into the automatic startup routines of the OS. My example here show how to do it on Oracle Linux 6. On Oracle Linux 7 it looks a little different. Fortunately, Oracle delivers [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229],"tags":[1054],"type_dbi":[],"class_list":["post-10266","post","type-post","status-publish","format-standard","hentry","category-database-administration-monitoring","tag-oud"],"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>OUD 11.1.2.3 - How to create an OUD Start\/Stop\/Status script on Oracle Linux 6 - dbi Blog<\/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:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"OUD 11.1.2.3 - How to create an OUD Start\/Stop\/Status script on Oracle Linux 6\" \/>\n<meta property=\"og:description\" content=\"By William Sescu One of the questions that pops up immediately, after you have installed your OUD successfully is how to integrate it into the automatic startup routines of the OS. My example here show how to do it on Oracle Linux 6. On Oracle Linux 7 it looks a little different. Fortunately, Oracle delivers [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-06-16T11:39:16+00:00\" \/>\n<meta name=\"author\" content=\"Oracle Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Oracle Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 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\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"OUD 11.1.2.3 &#8211; How to create an OUD Start\/Stop\/Status script on Oracle Linux 6\",\"datePublished\":\"2017-06-16T11:39:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/\"},\"wordCount\":467,\"commentCount\":0,\"keywords\":[\"OUD\"],\"articleSection\":[\"Database Administration &amp; Monitoring\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/\",\"name\":\"OUD 11.1.2.3 - How to create an OUD Start\/Stop\/Status script on Oracle Linux 6 - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2017-06-16T11:39:16+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"OUD 11.1.2.3 &#8211; How to create an OUD Start\/Stop\/Status script on Oracle Linux 6\"}]},{\"@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\/66ab87129f2d357f09971bc7936a77ee\",\"name\":\"Oracle Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"caption\":\"Oracle Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"OUD 11.1.2.3 - How to create an OUD Start\/Stop\/Status script on Oracle Linux 6 - dbi Blog","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\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/","og_locale":"en_US","og_type":"article","og_title":"OUD 11.1.2.3 - How to create an OUD Start\/Stop\/Status script on Oracle Linux 6","og_description":"By William Sescu One of the questions that pops up immediately, after you have installed your OUD successfully is how to integrate it into the automatic startup routines of the OS. My example here show how to do it on Oracle Linux 6. On Oracle Linux 7 it looks a little different. Fortunately, Oracle delivers [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/","og_site_name":"dbi Blog","article_published_time":"2017-06-16T11:39:16+00:00","author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"OUD 11.1.2.3 &#8211; How to create an OUD Start\/Stop\/Status script on Oracle Linux 6","datePublished":"2017-06-16T11:39:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/"},"wordCount":467,"commentCount":0,"keywords":["OUD"],"articleSection":["Database Administration &amp; Monitoring"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/","url":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/","name":"OUD 11.1.2.3 - How to create an OUD Start\/Stop\/Status script on Oracle Linux 6 - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2017-06-16T11:39:16+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/oud-11-1-2-3-how-to-create-an-oud-startstopstatus-script-on-oracle-linux-6\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"OUD 11.1.2.3 &#8211; How to create an OUD Start\/Stop\/Status script on Oracle Linux 6"}]},{"@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\/66ab87129f2d357f09971bc7936a77ee","name":"Oracle Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","caption":"Oracle Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/10266","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\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=10266"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/10266\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=10266"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=10266"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=10266"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=10266"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}