{"id":11393,"date":"2018-07-01T19:10:54","date_gmt":"2018-07-01T17:10:54","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/"},"modified":"2018-07-01T19:10:54","modified_gmt":"2018-07-01T17:10:54","slug":"windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/","title":{"rendered":"Windows Server &#8211; Service not starting with &#8216;Error 1067: The process terminated unexpectedly&#8217; &#8211; again"},"content":{"rendered":"<p>Some months ago, I wrote a <a title=\"Windows Server \u2013 Service not starting with \u2018Error 1067: The process terminated unexpectedly\u2019\" href=\"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly\/\" target=\"_blank\" rel=\"noopener\">blog<\/a> regarding a Windows Service not starting up with the error 1067. The first time I faced this issue, it was about an fmeAG Migration Center installation and as said in this previous blog, I&#8217;m not an expert in this software so I started to work on the Windows side of the issue and I found a workaround, which I explained in the above mentioned blog. A few weeks ago, I faced the exact same issue on another environment. Since I had a few hours available at that time and since I was much more familiar with the fmeAG Migration Center, I tried to really find the issue and not just apply a &#8211; kind of stupid &#8211; workaround. You guessed it, I found the issue, otherwise I wouldn&#8217;t have written this blog in the first place&#8230;<\/p>\n<p>So first of all, the Windows Service that couldn&#8217;t start is the &#8220;Migration Center Job Server&#8221; which uses the wrapper.exe which can be found in the installation folder (E.g.: D:fmeAGmigration-center Server Components 3.3). In this folder, there is a wrapper.log as well as wrapper.conf so that looked like a good starting point. From the logs, this is what I could find (I cut most of the non-needed lines):<\/p>\n<pre class=\"brush: java; gutter: true; first-line: 1; highlight: [3]\">STATUS | wrapper  | 2018\/06\/14 12:46:47 | --&gt; Wrapper Started as Service\nSTATUS | wrapper  | 2018\/06\/14 12:46:48 | Launching a JVM...\nINFO   | jvm 1    | 2018\/06\/14 12:46:48 | Usage: java [-options] class [args...]\nINFO   | jvm 1    | 2018\/06\/14 12:46:48 |            (to execute a class)\nINFO   | jvm 1    | 2018\/06\/14 12:46:48 |    or  java [-options] -jar jarfile [args...]\nINFO   | jvm 1    | 2018\/06\/14 12:46:48 |            (to execute a jar file)\nINFO   | jvm 1    | 2018\/06\/14 12:46:48 | where options include:\nINFO   | jvm 1    | 2018\/06\/14 12:46:48 |     -d32\t  use a 32-bit data model if available\nINFO   | jvm 1    | 2018\/06\/14 12:46:48 |     -d64\t  use a 64-bit data model if available\n...\nINFO   | jvm 1    | 2018\/06\/14 12:46:48 | See http:\/\/www.oracle.com\/technetwork\/java\/javase\/documentation\/index.html for more details.\nERROR  | wrapper  | 2018\/06\/14 12:46:48 | JVM exited while loading the application.\nSTATUS | wrapper  | 2018\/06\/14 12:46:52 | Launching a JVM...\n...\nERROR  | wrapper  | 2018\/06\/14 12:46:53 | JVM exited while loading the application.\nSTATUS | wrapper  | 2018\/06\/14 12:46:57 | Launching a JVM...\n...\nERROR  | wrapper  | 2018\/06\/14 12:46:58 | JVM exited while loading the application.\nSTATUS | wrapper  | 2018\/06\/14 12:47:02 | Launching a JVM...\n...\nERROR  | wrapper  | 2018\/06\/14 12:47:02 | JVM exited while loading the application.\nSTATUS | wrapper  | 2018\/06\/14 12:47:07 | Launching a JVM...\n...\nERROR  | wrapper  | 2018\/06\/14 12:47:07 | JVM exited while loading the application.\nFATAL  | wrapper  | 2018\/06\/14 12:47:07 | There were 5 failed launches in a row, each lasting less than 300 seconds.  Giving up.\nFATAL  | wrapper  | 2018\/06\/14 12:47:07 |   There may be a configuration problem: please check the logs.\nSTATUS | wrapper  | 2018\/06\/14 12:47:07 | &lt;-- Wrapper Stopped<\/pre>\n<p>&nbsp;<\/p>\n<p>This actually looked quite interesting&#8230; The fact that when starting the JVM, the java &#8220;help&#8221; is displayed would tend to show that the start command isn&#8217;t correct or that there is something wrong with it. I was able to start a JVM using the Windows command line tools so it wasn&#8217;t an issue with Java. As a result, I checked the wrapper.conf which was shipped with the software. In our installation, we only slightly updated this configuration file to add custom JVM parameters but this wasn&#8217;t the issue (I still checked with the default file to be sure). There were no issue with the content of this file or with its formatting but there are still something useful in it: the possibility to change the log level. There are the relevant settings:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\"># Log Level for console output.  (See docs for log levels)\nwrapper.console.loglevel=ERROR\n\n# Log file to use for wrapper output logging.\nwrapper.logfile=.\/wrapper.log\n\n# Log Level for log file output.  (See docs for log levels)\nwrapper.logfile.loglevel=INFO<\/pre>\n<p>&nbsp;<\/p>\n<p>So to see more information on the log file, you simply have to switch &#8220;wrapper.logfile.loglevel&#8221; from INFO to DEBUG for example. After doing that, the logs were clearer:<\/p>\n<pre class=\"brush: java; gutter: true; first-line: 1\">STATUS | wrapper  | 2018\/06\/14 12:53:10 | --&gt; Wrapper Started as Service\nDEBUG  | wrapper  | 2018\/06\/14 12:53:10 | Using tick timer.\nDEBUG  | wrapperp | 2018\/06\/14 12:53:10 | server listening on port 32000.\nSTATUS | wrapper  | 2018\/06\/14 12:53:10 | Launching a JVM...\nDEBUG  | wrapper  | 2018\/06\/14 12:53:10 | command: \"D:Javajdk1.8.0_171binjava.exe\" -Xss512k -DdocumentDirectory.home=\"%DOCUMENTDIRECTORY_HOME%\" -Dclb.library.path=.libmc-d2-importerLockBoxlibnativewin_vc100_ia32 -Duser.timezone=UTC -Xms512m -Xmx1536m -Djava.library.path=\".;.\/lib\/mc-outlook-adaptor;.\/lib\/mc-domino-scanner\/lib;D:DFCDFC_7.3Shared;D:Oracleinstantclient_12_2;D:Javajdk1.8.0_171bin;C:windowssystem32;C:windows;C:windowsSystem32Wbem;C:windowsSystem32WindowsPowerShellv1.0;C:Program Files1ENomadBranch\"\" -classpath \"wrappertest.jar;wrapper.jar;.\/lib\/mc-common\/mc-common-3.3.jar;.\/lib\/mc-api\/mc-api-3.3.jar;.\/lib\/mc-api\/ojdbc7.jar;.\/lib\/mc-api\/orai18n.jar;.\/lib\/mc-api\/runtime12.jar;.\/lib\/mc-api\/translator.jar;.\/lib\/mc-server;.\/lib\/mc-server\/log4j-1.2.17.jar;.\/lib\/mc-server\/mc-server-3.3.jar;.\/lib\/mc-dctm-adaptor;.\/lib\/mc-dctm-adaptor\/mc-dctm-adaptor-3.3.jar;.\/lib\/mc-d2-importer;.\/lib\/mc-d2-importer\/C2-API.jar;.\/lib\/mc-d2-importer\/C6-Common-4.7.0.jar;.\/lib\/mc-d2-importer\/commons-collections-3.2.jar;.\/lib\/mc-d2-importer\/commons-compress-1.5.jar;.\/lib\/mc-d2-importer\/commons-io-1.4.jar;.\/lib\/mc-d2-importer\/commons-lang-2.4.jar;.\/lib\/mc-d2-importer\/D2-API-4.7.0.jar;.\/lib\/mc-d2-importer\/D2-BOCS-65.jar;.\/lib\/mc-d2-importer\/D2-Specifications-API.jar;.\/lib\/mc-d2-importer\/D2-Specifications.jar;.\/lib\/mc-d2-importer\/D2BofServices-4.7.0.jar;.\/lib\/mc-d2-importer\/D2FS-Generated-4.7.0.jar;.\/lib\/mc-d2-importer\/D2FS4DCTM-API-4.7.0.jar;.\/lib\/mc-d2-importer\/dfc.jar;.\/lib\/mc-d2-importer\/diff-0.4.2.jar;.\/lib\/mc-d2-importer\/ehcache-core-1.7.2.jar;.\/lib\/mc-d2-importer\/emc-dfs-rt.jar;.\/lib\/mc-d2-importer\/emc-dfs-services.jar;.\/lib\/mc-d2-importer\/gwt-servlet-2.5.1.jar;.\/lib\/mc-d2-importer\/logback-classic-0.9.18.jar;.\/lib\/mc-d2-importer\/logback-core-0.9.18.jar;.\/lib\/mc-d2-importer\/mail.jar;.\/lib\/mc-d2-importer\/mc-d2-importer-3.3.jar;.\/lib\/mc-d2-importer\/poi-3.6-20091214.jar;.\/lib\/mc-d2-importer\/poi-contrib-3.6-20091214.jar;.\/lib\/mc-d2-importer\/slf4j-api-1.5.10.jar;.\/lib\/mc-dcm-importer;.\/lib\/mc-dcm-importer\/dcm.jar;.\/lib\/mc-dcm-importer\/dcmibof.jar;.\/lib\/mc-dcm-importer\/dcmproperties.jar;.\/lib\/mc-dcm-importer\/dcmresource.jar;.\/lib\/mc-dcm-importer\/DmcRecords.jar;.\/lib\/mc-dcm-importer\/mc-dcm-importer-3.3.jar;.\/lib\/mc-dcm-importer\/pss.jar;.\/lib\/mc-otcs-common\/activation.jar;.\/lib\/mc-otcs-common\/aspectjrt.jar;.\/lib\/mc-otcs-common\/commons-lang3-3.3.2.jar;.\/lib\/mc-otcs-common\/jaxb-api.jar;.\/lib\/mc-otcs-common\/jaxb-impl.jar;.\/lib\/mc-otcs-common\/jaxws-api.jar;.\/lib\/mc-otcs-common\/jaxws-rt.jar;.\/lib\/mc-otcs-common\/jsr173_api.jar;.\/lib\/mc-otcs-common\/jsr181-api.jar;.\/lib\/mc-otcs-common\/jsr250-api.jar;.\/lib\/mc-otcs-common\/mimepull.jar;.\/lib\/mc-otcs-common\/resolver.jar;.\/lib\/mc-otcs-common\/saaj-api.jar;.\/lib\/mc-otcs-common\/saaj-impl.jar;.\/lib\/mc-otcs-common\/stax-ex.jar;.\/lib\/mc-otcs-common\/streambuffer.jar;.\/lib\/mc-d2-importer\/LockBox;.\/lib\/mc-firstdoc-importer;D:Documentumconfig;D:DFCDFC_7.3dctm.jar\" -Dwrapper.key=\"eFO3zr2BRv874Qb4\" -Dwrapper.port=32000 -Dwrapper.jvm.port.min=31000 -Dwrapper.jvm.port.max=31999 -Dwrapper.debug=\"TRUE\" -Dwrapper.pid=4832 -Dwrapper.version=\"3.2.3\" -Dwrapper.native_library=\"wrapper\" -Dwrapper.cpu.timeout=\"10\" -Dwrapper.jvmid=1 org.tanukisoftware.wrapper.WrapperSimpleApp de.fme.mc.server.Main\nDEBUG  | wrapper  | 2018\/06\/14 12:53:10 | JVM started (PID=4756)\nINFO   | jvm 1    | 2018\/06\/14 12:53:10 | Usage: java [-options] class [args...]\nINFO   | jvm 1    | 2018\/06\/14 12:53:10 |            (to execute a class)\nINFO   | jvm 1    | 2018\/06\/14 12:53:10 |    or  java [-options] -jar jarfile [args...]\nINFO   | jvm 1    | 2018\/06\/14 12:53:10 |            (to execute a jar file)\nINFO   | jvm 1    | 2018\/06\/14 12:53:10 | where options include:\nINFO   | jvm 1    | 2018\/06\/14 12:53:10 |     -d32\t  use a 32-bit data model if available\nINFO   | jvm 1    | 2018\/06\/14 12:53:10 |     -d64\t  use a 64-bit data model if available\n...\nINFO   | jvm 1    | 2018\/06\/14 12:53:10 | See http:\/\/www.oracle.com\/technetwork\/java\/javase\/documentation\/index.html for more details.\nERROR  | wrapper  | 2018\/06\/14 12:53:10 | JVM exited while loading the application.\n...\nFATAL  | wrapper  | 2018\/06\/14 12:53:30 | There were 5 failed launches in a row, each lasting less than 300 seconds.  Giving up.\nFATAL  | wrapper  | 2018\/06\/14 12:53:30 |   There may be a configuration problem: please check the logs.\nSTATUS | wrapper  | 2018\/06\/14 12:53:30 | &lt;-- Wrapper Stopped<\/pre>\n<p>&nbsp;<\/p>\n<p>From the beginning, this looked like an issue with the java command executed so I took a close look at it and I could find that there were indeed something wrong. If you have good eyes (and took the time to scroll a little bit), you can see that at some point, there are two consecutive double quotes ( &#8220;&#8221; ) to close the &#8220;-Djava.library.path&#8221; JVM parameter. As a result, the following parameter which is -classpath isn&#8217;t taken properly and it just cause the whole command to be wrongly formatted&#8230;<\/p>\n<p>The value to be used for the &#8220;-Djava.library.path&#8221; JVM parameter is coming from the wrapper.conf file as well: in this file, you can find the &#8220;wrapper.java.library.path.X=&#8221; lines where X is a number starting with 1 and each of these values are concatenated (separated with semicolon) to form the final value. By default, the last of these lines will have &#8220;%PATH%&#8221; as value so it will replace it at runtime with the actual value of this environment variable. Since it was identified that the issue is coming from the double quotes at the end of the &#8220;-Djava.library.path&#8221;, it is therefore safe to assume that the issue is inside %PATH% definition&#8230;<\/p>\n<p>Checking its value using the command prompt didn&#8217;t show anything strange but through the Control Panel, it confirmed my suspicions: the declaration of the %PATH% environment variable for the current user ended with a double quote ( &#8221; ) while there were no double quotes at the start of this declaration. After removing it, the Service was able to start successfully. After investigation on the root cause, it appeared that this double quote was actually coming from an issue with the Windows Server delivery tool that wrongly set this environment variable on the server delivery. This also explained why the workaround I described in the previous blog worked: it cleaned the environment variables for this user (there were no specific declaration on this user&#8217;s %PATH%, it was only the default Windows stuff).<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Some months ago, I wrote a blog regarding a Windows Service not starting up with the error 1067. The first time I faced this issue, it was about an fmeAG Migration Center installation and as said in this previous blog, I&#8217;m not an expert in this software so I started to work on the Windows [&hellip;]<\/p>\n","protected":false},"author":20,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197,525],"tags":[1278,1280,1281,872,549],"type_dbi":[],"class_list":["post-11393","post","type-post","status-publish","format-standard","hentry","category-application-integration-middleware","category-enterprise-content-management","tag-1278","tag-fme","tag-migration-center","tag-server","tag-windows"],"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>Windows Server - Service not starting with &#039;Error 1067: The process terminated unexpectedly&#039; - again - 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\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Windows Server - Service not starting with &#039;Error 1067: The process terminated unexpectedly&#039; - again\" \/>\n<meta property=\"og:description\" content=\"Some months ago, I wrote a blog regarding a Windows Service not starting up with the error 1067. The first time I faced this issue, it was about an fmeAG Migration Center installation and as said in this previous blog, I&#8217;m not an expert in this software so I started to work on the Windows [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-01T17:10:54+00:00\" \/>\n<meta name=\"author\" content=\"Morgan Patou\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@MorganPatou\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Morgan Patou\" \/>\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\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Windows Server &#8211; Service not starting with &#8216;Error 1067: The process terminated unexpectedly&#8217; &#8211; again\",\"datePublished\":\"2018-07-01T17:10:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/\"},\"wordCount\":739,\"commentCount\":0,\"keywords\":[\"1067\",\"FME\",\"Migration Center\",\"server\",\"Windows\"],\"articleSection\":[\"Application integration &amp; Middleware\",\"Enterprise content management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/\",\"name\":\"Windows Server - Service not starting with 'Error 1067: The process terminated unexpectedly' - again - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2018-07-01T17:10:54+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Windows Server &#8211; Service not starting with &#8216;Error 1067: The process terminated unexpectedly&#8217; &#8211; again\"}]},{\"@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\/c4d05b25843a9bc2ab20415dae6bd2d8\",\"name\":\"Morgan Patou\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"caption\":\"Morgan Patou\"},\"description\":\"Morgan Patou has over 12 years of experience in Enterprise Content Management (ECM) systems, with a strong focus in recent years on platforms such as Alfresco, Documentum, and M-Files. He specializes in the architecture, setup, customization, and maintenance of ECM infrastructures in complex &amp; critical environments. Morgan is well-versed in both engineering and operations aspects, including high availability design, system integration, and lifecycle management. He also has a solid foundation in open-source and proprietary technologies - ranging from Apache, OpenLDAP or Kerberos to enterprise-grade systems like WebLogic. Morgan Patou holds an Engineering Degree in Computer Science from ENSISA (\u00c9cole Nationale Sup\u00e9rieure d'Ing\u00e9nieurs Sud Alsace) in Mulhouse, France. He is Alfresco Content Services Certified Administrator (ACSCA), Alfresco Content Services Certified Engineer (ACSCE) as well as OpenText Documentum Certified Administrator. His industry experience spans the Public Sector, IT Services, Financial Services\/Banking, and the Pharmaceutical industry.\",\"sameAs\":[\"https:\/\/blog.dbi-services.com\/author\/morgan-patou\/\",\"https:\/\/x.com\/MorganPatou\"],\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/morgan-patou\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Windows Server - Service not starting with 'Error 1067: The process terminated unexpectedly' - again - 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\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/","og_locale":"en_US","og_type":"article","og_title":"Windows Server - Service not starting with 'Error 1067: The process terminated unexpectedly' - again","og_description":"Some months ago, I wrote a blog regarding a Windows Service not starting up with the error 1067. The first time I faced this issue, it was about an fmeAG Migration Center installation and as said in this previous blog, I&#8217;m not an expert in this software so I started to work on the Windows [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/","og_site_name":"dbi Blog","article_published_time":"2018-07-01T17:10:54+00:00","author":"Morgan Patou","twitter_card":"summary_large_image","twitter_creator":"@MorganPatou","twitter_misc":{"Written by":"Morgan Patou","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Windows Server &#8211; Service not starting with &#8216;Error 1067: The process terminated unexpectedly&#8217; &#8211; again","datePublished":"2018-07-01T17:10:54+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/"},"wordCount":739,"commentCount":0,"keywords":["1067","FME","Migration Center","server","Windows"],"articleSection":["Application integration &amp; Middleware","Enterprise content management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/","url":"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/","name":"Windows Server - Service not starting with 'Error 1067: The process terminated unexpectedly' - again - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2018-07-01T17:10:54+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/windows-server-service-not-starting-with-error-1067-the-process-terminated-unexpectedly-again\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Windows Server &#8211; Service not starting with &#8216;Error 1067: The process terminated unexpectedly&#8217; &#8211; again"}]},{"@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\/c4d05b25843a9bc2ab20415dae6bd2d8","name":"Morgan Patou","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","caption":"Morgan Patou"},"description":"Morgan Patou has over 12 years of experience in Enterprise Content Management (ECM) systems, with a strong focus in recent years on platforms such as Alfresco, Documentum, and M-Files. He specializes in the architecture, setup, customization, and maintenance of ECM infrastructures in complex &amp; critical environments. Morgan is well-versed in both engineering and operations aspects, including high availability design, system integration, and lifecycle management. He also has a solid foundation in open-source and proprietary technologies - ranging from Apache, OpenLDAP or Kerberos to enterprise-grade systems like WebLogic. Morgan Patou holds an Engineering Degree in Computer Science from ENSISA (\u00c9cole Nationale Sup\u00e9rieure d'Ing\u00e9nieurs Sud Alsace) in Mulhouse, France. He is Alfresco Content Services Certified Administrator (ACSCA), Alfresco Content Services Certified Engineer (ACSCE) as well as OpenText Documentum Certified Administrator. His industry experience spans the Public Sector, IT Services, Financial Services\/Banking, and the Pharmaceutical industry.","sameAs":["https:\/\/blog.dbi-services.com\/author\/morgan-patou\/","https:\/\/x.com\/MorganPatou"],"url":"https:\/\/www.dbi-services.com\/blog\/author\/morgan-patou\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11393","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\/20"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=11393"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11393\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=11393"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=11393"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=11393"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=11393"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}