热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

centos7安装hadoop完全分布式集群

groupaddtest新建test工作组useradd-gtestphpq新建phpq用户并增加到test工作组userdel选项

groupadd test             //新建test工作组

useradd -g test phpq        //新建phpq用户并增加到test工作组

userdel 选项 用户名

常用的选项是 -r,它的作用是把用户的主目录一起删除。

 

chmod u+w /etc/sudoers

vim /etc/sudoers

在文件的如下位置,为hadoop用户和spark用户添加一行即可:

  • root ALL=(ALL) ALL
  • hadoop ALL=(ALL) ALL
  • spark ALL=(ALL) ALL

 

CentOS 7.0默认使用的是firewall作为防火墙

查看防火墙状态

firewall-cmd --state
  • 1

停止firewall

systemctl stop firewalld.service

禁止firewall开机启动

systemctl disable firewalld.service 

关闭selinux 
进入到/etc/selinux/config文件

vi /etc/selinux/config

将SELINUX=enforcing改为SELINUX=disabled


推荐阅读
author-avatar
吴家南小南
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有