在linux中,有些操作只能root用户才能进行操作,普通用户是无法进行操作的,只能切换到root用户。因此,可以设置普通用户无需密码就可以同样root权限.
步骤一: [root@hadoop-master etc]# chmod u+w /etc/sudoers
步骤二: [root@hadoop-master etc]# vi /etc/sudoers
在首行添加内容如下:
步骤三: [root@hadoop-master etc]# chmod u-w /etc/sudoers
测试:
[root@hadoop-master etc]# su hadoop
[hadoop@hadoop-master etc]