zoukankan      html  css  js  c++  java
  • 从零搭建hadoop集群之系统管理操作

    1. 配置主机名

    [root@hadoop01 ~]# hostname    #显示当前主机名

    方法一:通过配置文件/etc/hostname (重启后生效)

    [root@hadoop01 ~]# vim /etc/hostname

    方法二:通过命令hostnamectl  set-hostname    新主机名(会自动把主机名改为小写)

    [root@hadoop01 ~]# hostnamectl set-hostname hadoop01

    2. 添加内网域名映射

    [root@hadoop01 ~]# vim /etc/hosts

     3. 关闭防火墙

    启动: systemctl start firewalld
    关闭: systemctl stop firewalld
    查看状态: systemctl status firewalld 
    开机禁用  : systemctl disable firewalld
    开机启用  : systemctl enable firewalld

    4. 关闭SELINUX

    [root@hadoop01 ~]# vim /etc/selinux/config


    # This file controls the state of SELinux on the system.
    # SELINUX= can take one of these three values:
    # enforcing - SELinux security policy is enforced.
    # permissive - SELinux prints warnings instead of enforcing.
    # disabled - No SELinux policy is loaded.
    SELINUX=disabled #修改为 disabled
    # SELINUXTYPE= can take one of three values:
    # targeted - Targeted processes are protected,
    # minimum - Modification of targeted policy. Only selected processes are protected.
    # mls - Multi Level Security protection.
    SELINUXTYPE=targeted

  • 相关阅读:
    2018/12/06 L1-031 到底是不是太胖了 Java
    2018/12/06 L1-030 一帮一 Java
    2018/12/06 L1-029 是不是太胖了 Java
    .NET Framework 类库命名空间
    .NET获取根目录
    ddd领域驱动设计
    垃圾回收
    rest api
    数据库ACID
    事务隔离级别
  • 原文地址:https://www.cnblogs.com/qikaipei/p/14122467.html
Copyright © 2011-2022 走看看