centons7安装 ambari准备工作

冷暖自知 提交于 2020-01-25 10:48:58

安装java,maven

安装过程略,环境变量配置

  export JAVA_HOME=/home/ambari/tools/jdk1.8.0_221
  export CLASSPATH=.:$JAVA_HOME/jre/lib:$JAVA_HOME/lib:$JAVA_HOME/lib/tools.jar
  export MAVEN_HOME=/home/ambari/tools/apache-maven-3.6.3
  export PATH=$PATH:$HOME/.local/bin:$HOME/bin:$JAVA_HOME/bin:$MAVEN_HOME/bin

修改主机名,主机映射关系

修改主机名

   vi /etc/hostname

kylin60

集群主机映射配置

vi /etc/hosts

192.168.4.60 kylin60
192.168.4.61 kylin61
192.168.4.62 kylin62

关闭防火墙

sudo  systemctl stop firewalld
sudo systemctl disable firewalld
sudo systemctl status firewalld

关闭selinux

vi /etc/sysconfig/selinux

SELINUX=disabled

机器重启

配置ssh免登陆

 ssh-keygen -t rsa

一直回车结束

拷贝公钥到本地 authorized_keys文件中

cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
chmod 700 ~/.ssh/authorized_keys

拷贝其它机器

ssh-copy-id user@host

配置时间同步

每台机器 安装

yum -y  install chrony

在服务器上

vi /etc/chrony.conf

配置外网服务地址
server ntp1.aliyun.com
server ntp2.aliyun.com
server ntp3.aliyun.com
server ntp4.aliyun.com
server ntp5.aliyun.com
server ntp6.aliyun.com
server ntp7.aliyun.com

在客户端配置 服务地址

vi  /etc/chrony.conf

server 192.168.4.60 iburst

服务器和客户端

systemctl start chronyd
systemctl enable chronyd

把chrony 设置服务自动启动

systemctl start chronyd.service //启动服务
systemctl enable chronyd.service //设置开机自启动

设置亚洲时区

timedatectl set-timezone Asia/Shanghai

启用NTP同步

timedatectl set-ntp yes

查看 状态

chronyc sources -v  

查看时间同步源

chronyc sources -v 
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!