Node.js命令行/批处理中如何更改Linux用户密码浅析
前言
本文主要介绍了Node.js命令行/批处理更改Linux用户密码的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧
hpasswd可在批处理文件中批量更改Linux用户的密码。
用法:
chpasswd[options]
option主要为一些密码加密选项
-c,--crypt-method
Usethespecifiedmethodtoencryptthepasswords.
TheavailablemethodsareDES,MD5,NONE,andSHA256orSHA512ifyourlibcsupportthesemethods.
-e,--encrypted
Suppliedpasswordsareinencryptedform.
-h,--help
Displayhelpmessageandexit.
-m,--md5
UseMD5encryptioninsteadofDESwhenthesuppliedpasswordsarenotencrypted.
-s,--sha-rounds
Usethespecifiednumberofroundstoencryptthepasswords.
Thevalue0meansthatthesystemwillchoos
输入命令后,按username:password格式输入用户名密码,一行一个,如:
chpasswd newghost:4567
用这种方法可在node.js中使用:
varcp=require('child_process') //更新密码 varchpasswd=cp.spawn('chpasswd') varerrmsg //查看是否有错误 chpasswd.stderr.on('data',function(data){ errmsg+=data.toString() }) chpasswd.on('exit',function(code){ if(cb){ errmsg ?cb(newError(errmsg)) :cb() } }) //写入密码 chpasswd.stdin.write(username+':'+password) chpasswd.stdin.end()
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对毛票票的支持。