简体   繁体   English

更改服务帐户密码后,Control-M批处理作业开始引发错误

[英]Control-M batch job started throwing an error after Service account password getting changed

I am facing a very common issue may be, but I am not able to figure it out. 我可能面临一个非常普遍的问题,但我无法弄清楚。 Someone has reset the password for service account from the back end (on which control-m job was placed).Now, I am getting the password was not correct error on the Control-M. 有人从后端(放置了control-m作业的后端)重设了服务帐户的密码。现在,我在Control-M上收到密码不正确的错误消息。

Question that arise in my mind: 1)I haven't used service account with password before. 我想到的问题是:1)我以前没有使用带有密码的服务帐户。 Also, I haven't configured password anywhere while creating the batch-job. 另外,在创建批处理作业时,我没有在任何地方配置密码。 2)Do I have to update the password on back-end? 2)我必须在后端更新密码吗? if yes, where to update and how? 如果是,在哪里更新以及如何更新?

I am new to windows server 2003 (old machine).Any help would be greatly appreciated! 我是Windows Server 2003(旧机器)的新手。任何帮助将不胜感激!

Finally, I come to know that CONTROL-M itself storing the passwords!!!! 最后,我知道CONTROL-M本身会存储密码!!!! yes, you've heard it correctly. 是的,您没听错。

you will find the file called PASSWRDS.dat at the below location (location may vary) 您将在以下位置找到名为PASSWRDS.dat的文件(位置可能有所不同)

 C:\Program Files\BMC Software\Control-M Agent\Default\DATA

Open this file. 打开这个文件。 it will contain your service account and password in hashed format as below: 它将以散列格式包含您的服务帐户和密码,如下所示:

SERVICE_ACCT_USER
00-134570-410-2800123493493232323-234234A123-JSHASAWQQ

you will not be able to understand what is the actual password as it will be hashed using multiple algorithms. 您将无法理解实际的密码是什么,因为它将使用多种算法进行哈希运算。

How to cope up with the issue?? 如何应付这个问题?

1) erase service account and password from the passwrds.dat file 1)从passwrds.dat文件中删除服务帐户和密码

2) Open command prompt and change the location to C:\\Program Files\\BMC Software\\Control-M Agent\\Default\\EXE 2)打开命令提示符,然后将位置更改为C:\\ Program Files \\ BMC Software \\ Control-M Agent \\ Default \\ EXE

3) run below command 3)运行以下命令

ctmpwd -action add -user yourserviceaccountuse -password serviceaccountpwd

that's it. 而已。 In future, if you change the password, make sure to follow the same procedure. 以后,如果您更改密码,请确保遵循相同的步骤。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何知道Control-M中的工作超支 - How to know job overrunning in Control-M 运行“npm start”后出现编译失败错误 - I'm getting a failed to compile error after running `npm start` puppetserver.service 的作业失败,因为控制进程退出并显示错误代码 - Job for puppetserver.service failed because the control process exited with error code 我收到与Access-Control-Allow-Origin相关的错误消息 - I'm getting an error message related to Access-Control-Allow-Origin 在 Pterodactyl 控制面板中使用 Python 和 Account API 键获取服务器状态 - Getting server status with Python and Account API key in Pterodactyl Control Panel 团队发展入门 - Getting started for team development 黑板入门 - Getting started with Blackboard Tomcat 未开始:权限被拒绝 - Tomcat is not getting started: Permission denied Angular:我收到“未定义的 500 内部服务器错误” - Angular: I'm getting "undefined 500 Internal Server Error" Gunicorn 未开始抛出 gunicorn.service:失败,结果为“退出代码”。 错误 - Gunicorn not starting throwing gunicorn.service: Failed with result 'exit-code'. error
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM