AWS Debian系允许root登陆,开机自启Python脚本
目录
AWS Debian系允许root登陆,开机自启Python脚本, 下述操作默认在root下进行:sudo su – root
一、编辑/etc/ssh/sshd_config
1 2 3 4 5 |
# 找到PermitRootLogin和PasswordAuthentication PermitRootLogin yes //改为yes PasswordAuthentication yes //改为yes |
二、重启ssh服务
1 |
/etc/init.d/ssh restart |
三、aws 公有云 开启root登陆,还需要打开云初始化配置,将true变为false:
1 2 3 |
# vim /etc/cloud/cloud.cfg disable_root: false //改为false |
四、passwd root 修改root密码
五、开启自启动Python3脚本
1 2 3 4 5 6 |
# aws debian 新版无crontab apt update apt install cron -y # crontab -e 编辑定时任务,随机启动client-linux.py脚本 @reboot /usr/bin/python3 /root/client-linux.py |
重启即可。