centos新建用户并授权
2021/7/29 7:05:47
本文主要是介绍centos新建用户并授权,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
买了一台阿里云服务器,准备用来做服务使用,但是由于只有root账号,总感觉安全性上可能会有问题,因此这里建立一个普通账户并授权,以后都用这个用户进行操作。
创建新用户
# adduser youruser # passwd youruser Changing password for user youruser. New password: Retype new password: passwd: all authentication tokens updated successfully.
授权
这里需要给新建的用户赋予root权限,否则后面操作docker很不方便
# whereis sudoers sudoers: /etc/sudoers /etc/sudoers.d /usr/share/man/man5/sudoers.5.gz # chmod -v u+w /etc/sudoers mode of '/etc/sudoers' changed from 0440 (r--r-----) to 0640 (rw-r-----) # vim /etc/sudoers
把用户加入sudo组
## Allow root to run any commands anywhere root ALL=(ALL) ALL youruser ALL=(ALL) ALL #这个是新用户
# chmod -v u-w /etc/sudoers mode of '/etc/sudoers' changed from 0640 (rw-r-----) to 0440 (r--r-----)
切换用户时后,发现已经有权限了
$ sudo su We trust you have received the usual lecture from the local System Administrator. It usually boils down to these three things: #1) Respect the privacy of others. #2) Think before you type. #3) With great power comes great responsibility. [sudo] password for youruser: #
但是还有一点是需要输入密码,因此还需要配置一下免密sudo
youruser ALL=(ALL) NOPASSWD: ALL
这样就配好了用户,由于是个人使用,就不配置用户组了
这篇关于centos新建用户并授权的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 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专业技术文章分享