繁体   English   中英

如何使用Python在Linux服务器中自动创建用户

[英]How can I automate the user creation in Linux servers using Python

好吧,我正在尝试创建一个脚本来自动在Linux服务器中创建用户,因此我在每个服务器中生成了ssh密钥,并编写了如下代码:

user = teste
p = 'senha123' 
os.system("ssh myuser@lab sudo useradd -p " + p + " -d "+ "/home/" + user+ " -m "+ " -c \""+ name+"\" " + user)`

但是,我得到了错误:

Usage: useradd [options] LOGIN useradd -D useradd -D [options]

Options: -b, --base-dir BASE_DIR base directory for the home directory of the new account -c, --comment COMMENT GECOS field of the new account -d, --home-dir HOME_DIR home directory of the new account -D, --defaults print or change default useradd configuration -e, --expiredate EXPIRE_DATE expiration date of the new account -f, --inactive INACTIVE password inactivity period of the new account -g, --gid GROUP name or ID of the primary group of the new account -G, --groups GROUPS list of supplementary groups of the new account -h, --help display this help message and exit -k, --skel SKEL_DIR use this alternative skeleton directory -K, --key KEY=VALUE override /etc/login.defs defaults -l, --no-log-init do not add the user to the lastlog and faillog databases -m, --create-home create the user's home directory -M, --no-create-home do not create the user's home directory -N, --no-user-group do not create a group with the same name as the user -o, --non-unique allow to create users with duplicate (non-unique) UID -p, --password PASSWORD encrypted password of the new account -r, --system create a system account -R, --root CHROOT_DIR directory to chroot into -s, --shell SHELL login shell of the new account -u, --uid UID user ID of the new account -U, --user-group create a group with the same name as the user -Z, --selinux-user SEUSER use a specific SEUSER for the SELinux user ma pping

512

当我删除ssh myuser@lab部分时,脚本在localhost中工作。

有人可以帮我解决这个问题吗?

您将ssh视为使用了execve(2)语义,在其中将命令和参数作为单独的参数传递( sudoxargsfind -exec工作方式)。

ssh而是使用system(3)语义,因此它期望使用单个文字Shell命令(例如suevalbash -c和Python的os.system )。

对任意命令执行此操作的一种通用方法是,首先将要运行的shell命令分配给另一个字符串:

remote_command="sudo useradd -p " + p + " -d "+ "/home/" + user+ " -m "+ " -c \""+ name+"\" " + user

然后使用shlex.quote将其转义为ssh

import shlex
os.system("ssh myuser@lab " + shlex.quote(remote_command))

或者,跳过system()以避免不得不添加另一层转义:

import subprocess
subprocess.run(["ssh", "myuser@lab", remote_command], shell=False)

我不太确定是否可以使用,但您可以尝试一次:

os.system("ssh myuser@lab \'sudo useradd -p " + p + " -d "+ "/home/" + user+ " -m "+ " -c \""+ name+"\" " + user+"\'")

暂无
暂无

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM