博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux创建用户、用户组、授权
阅读量:5999 次
发布时间:2019-06-20

本文共 475 字,大约阅读时间需要 1 分钟。

hot3.png

root用户登录,创建用户

# 输入创建用户命令#useradd usernameuseradd october#输入设置october用户密码:#passwd usernamepasswd october#输入密码...#确认密码...#密码短不安全会提示,但root用户下怎么设置都可以

创建一个用户组

#命令窗口输入:#groupadd {group-name}groupadd elk

将用户添加到用户组

#useradd -G {group-name} usernameusermod -G elk october

查看验证用户组是否分配成功

#groups usernamegroups october#出现如下正常october : october elk

用root用户给october赋予指定目录的权限

#chown username:{group-name} /目录chown october:elk /data/

常用备份,自用.

转载于:https://my.oschina.net/openplus/blog/1582239

你可能感兴趣的文章
logback logback.xml常用配置详解(二)<appender>
查看>>
js常用的函数库
查看>>
Sqlserver 数据库安全
查看>>
netstat命令简单使用
查看>>
Python标示符命名规则
查看>>
SSL certificate problem unable to get local issuer certificate解决办法
查看>>
20145209 刘一阳 《网络对抗》实验四:恶意代码分析
查看>>
个人学期总结
查看>>
CodeForces 985E Pencils and Boxes
查看>>
为什么Elasticsearch查询变得这么慢了?
查看>>
Cetos 中添加bbr服务
查看>>
win7_64位操作系统安装python3.6.3遇到的问题和解决方法
查看>>
html5笔记
查看>>
WPF操作邮箱,发送邮件
查看>>
Error copying image in the datastore: Not allowed to copy image file
查看>>
kvm在线磁盘扩展
查看>>
libvirt-adabddad
查看>>
apache的配置及检查
查看>>
关于解决 从相册中选择照片后无法剪切图片以及无法加载图片的问题
查看>>
ubuntu14.04+cuda8.0+caffe+opencv2.4.13+matlab安装指南
查看>>