Linux 的 /usr/ldbin/resetpw 变体
我有一个应用程序可以通过 shell 调用 HPUX resetpw 命令。 它在 Linux 中不存在。 是否有另一个具有类似功能的命令我可以从我的代码中引用?
I've got a application that makes a shell call out to the HPUX resetpw command. It doesn't exist in Linux. Is there another command with similar functionality I could reference from my code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果“resetpw”确实像听起来那样,那么您可能需要在 Linux 上使用“passwd”命令。
以下是一些对用户帐户管理有用的其他命令。
http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5/html/Deployment_Guide/s1-users-tools.html redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5/html/Deployment_Guide/s1-users-tools.html
If 'resetpw' does what it sounds like, you probably want the 'passwd' command on linux.
Here are a few other commands that are useful for user account administration.
http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5/html/Deployment_Guide/s1-users-tools.html
最终通过使用 AD 身份验证避免了整个事情。
Ended up avoiding the entire thing by using AD authentication.