博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos:添加用户
阅读量:5873 次
发布时间:2019-06-19

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

初步进入centos学习,配置用户

1,创建用户

创建用户 hadoop

[root@master spark]# useradd hadoop[root@master spark]#

2,创建密码

[root@master spark]# passwd hadoopChanging password for user hadoop.New password: BAD PASSWORD: The password is shorter than 8 charactersRetype new password: passwd: all authentication tokens updated successfully.

3,用户授权

创建账户必须授权,不然,个人用户的权限只可以在本home下有权限,其他的必须有授权,一般需要root的权限

sudo的命令授权一般在sudoers里面
找到sudoer文件位置
看下文件的权限

[spark@master ~]$ sudoers-bash: sudoers: command not found[spark@master ~]$ whereis sudoerssudoers: /etc/sudoers /etc/sudoers.d /usr/share/man/man5/sudoers.5.gz

只读的文件,可以修改权限或者强行保存

[root@centos etc]# vi /etc/sudoers## Allow root to run any commands anywherroot   ALL=(ALL) ALL #这个是新增的用户 hadoop ALL=(ALL) ALL  #这个是新增的用户

用x!命令强制保存

或者修改文件权限

chmod -v u+w /etc/sudoers

配置完了,最好把权限收回

chmod -v u-w /etc/sudoers

到这里基本结束了。

可以用新用户登陆了,使用sudo命令这块

[hadoop@centos ~]$ sudo cat /etc/passwdWe trust you have received the usual lecture from the local SystemAdministrator. 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 hadoop:

 

转载地址:http://lwhnx.baihongyu.com/

你可能感兴趣的文章
黑客和骇客
查看>>
Hausaufgabe--Python 06
查看>>
Django模板自定义标签和过滤器,模板继承(extend),Django的模型层
查看>>
Sql Server 列转行 Pivot使用
查看>>
socket和http间的区别
查看>>
error笔记
查看>>
C++——流类库和输入/输出
查看>>
Windows下动态库的制作与使用
查看>>
STL容器简介
查看>>
会写"helloworld",不等于入门
查看>>
element-ui table多选CheckBox参数解析
查看>>
重置mysql的root用户密码
查看>>
隔离级别
查看>>
选项卡实现
查看>>
翻译:理解TCP/IP网络栈&编写网络应用(上)
查看>>
算法导论6:排序小结和最值取法 2016.1.6
查看>>
Delphi线程类(四)
查看>>
使用skin++进行MFC界面美化范例
查看>>
使用httpwatch抓包
查看>>
LeetCode - Best Time to Buy and Sell
查看>>