zoukankan      html  css  js  c++  java
  • MSMQ 安装问题的解决过程

       在xp上安装msmq时,出现“ 无法启动msmetriggers服务0x42C”的错误。

    解决方法

    msdtc是运行在LocalSystem账号下,可以通过以下命令解决:
    net stop msdtc   
    msdtc -uninstall

    msdtc -install 
    net start msdtc  

    -------------------------------------------

    原文:

     What is the computer model and how did you install SP2 ? I ask this because
     this problem happened on the beta version of SP2 and was fixed for the
     released version. I'd like to know if you install XP from scratch, then
     upgraded for SP2 ? or upgraded from Win2000 ? etc.
     Anyway, that problem happens because msdtc run under the Localsystem
     account. Please verify this by running the command:
     sc qc msdtc
     If it indeed run as LocalSystem, the immediate work around is
     net stop msdtc
     msdtc -uninstall
     go into regedit and delete the key HKLM\Software\Microsoft\MSDTC
     msdtc -install
     net start msdtc 


  • 相关阅读:
    Python 中的一些小技巧
    Java/Python/Elixir 正则库使用上的注意事项
    Scrapy 学习笔记(一)数据提取
    记第一次面试
    Spring Web MVC 笔记
    Java 单元测试
    Spring 笔记(四)AOP
    C 语言 进阶
    编程的智慧
    Spring 笔记(三)Bean 装配
  • 原文地址:https://www.cnblogs.com/abeen/p/1449870.html
Copyright © 2011-2022 走看看