Azure CentOS 虚拟机启用 ROOT 账户
2021/6/13 7:23:02
本文主要是介绍Azure CentOS 虚拟机启用 ROOT 账户,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
If you tried to access your instance using SSH as root:
# ssh -i PrivateKey.pem root@Floating-IP-Address Where Flaoting-IP-Address is the flaoting IP address associated with your instance. You might get this message: “Please login as the user “centos” rather than the user “root”.” Then the connection will close.
Steps To Allow Root Access Through SSH
- Login as the user “centos”:
# ssh -i PrivateKey.pem centos@Floating-IP-Address
- Change to root:
# sudo -s
- Edit the file “/root/.ssh/authorized_keys” (# vi /root/.ssh/authorized_keys) and keep it only contains the key (starts with “sh-rsa”) without the restrictions that exist at the begining of the file.
- Open the file “/etc/ssh/sshd_config” and uncomment the line “PermitRootLogin yes”
- Restart SSH daemon:
# systemctl restart sshd
Now you can SSH as root to your instance.
Note: You need to automate the above if your servers are created/ deleted on demand and SSH public keys are inserted in servers on boot by Openstack.
这篇关于Azure CentOS 虚拟机启用 ROOT 账户的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-18uniapp 怎么定义对象属性?-icode9专业技术文章分享
- 2024-11-18克罗内克积是什么?-icode9专业技术文章分享
- 2024-11-18uniapp怎么实现点击防抖和节流功能?-icode9专业技术文章分享
- 2024-11-18uniapp实现全局的监听和接收有哪些方法?-icode9专业技术文章分享
- 2024-11-18TCPDF与mpdf的区别与优势是什么?-icode9专业技术文章分享
- 2024-11-17getExternalFilesDir这个方法哪些安卓版本可以使用?-icode9专业技术文章分享
- 2024-11-17app下载好后,安装包更新代码怎么写?-icode9专业技术文章分享
- 2024-11-17login-customer-id 如何获取?-icode9专业技术文章分享
- 2024-11-17使用 vite加载.env 文件环境变量无法加载是什么原因?-icode9专业技术文章分享
- 2024-11-17tp钱包是什么,有哪些功能?-icode9专业技术文章分享