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-12-23DevExpress 怎么实现右键菜单(Context Menu)显示中文?-icode9专业技术文章分享
- 2024-12-22怎么通过控制台去看我的页面渲染的内容在哪个文件中呢-icode9专业技术文章分享
- 2024-12-22el-tabs 组件只被引用了一次,但有时会渲染两次是什么原因?-icode9专业技术文章分享
- 2024-12-22wordpress有哪些好的安全插件?-icode9专业技术文章分享
- 2024-12-22wordpress如何查看系统有哪些cron任务?-icode9专业技术文章分享
- 2024-12-21Svg Sprite Icon教程:轻松入门与应用指南
- 2024-12-20Excel数据导出实战:新手必学的简单教程
- 2024-12-20RBAC的权限实战:新手入门教程
- 2024-12-20Svg Sprite Icon实战:从入门到上手的全面指南
- 2024-12-20LCD1602显示模块详解