cdh集群遷移 ip更改



#---1.修改每個用戶的hosts 

vi /etc/hosts

#127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6


172.6.10.20 dip001
172.6.10.21 dip002
172.6.10.22 dip003
172.6.10.23 dip005
172.6.10.24 dip006
172.6.10.25 dip007

#分發到每個節點

for i in {2,3,5,6,7} ;do scp /etc/hosts dip00$i:/etc ;done

--2修改node對應ip

登錄mysql的scm庫,修改hosts表

use scm;
update HOSTS set ip_address = '172.6.22.15' where name='dip0001';
update HOSTS set ip_address = '172.6.22.16' where name='dip0002';
update HOSTS set ip_address = '172.6.22.17' where name='dip0003';
update HOSTS set ip_address = '172.6.22.18' where name='dip0004';
update HOSTS set ip_address = '172.6.22.20' where name='dip0005';
update HOSTS set ip_address = '172.6.22.21' where name='dip0006';
update HOSTS set ip_address = '172.6.22.11' where name='dip0007';

--3修改每台cloudera-scm-agent的配置文件 server_host到cloudera-scm-server的ip
vi /etc/cloudera-scm-agent/config.ini
server_host=172.6.22.15

#--4重啟cm客戶端服務

systemctl restart cloudera-scm-agent

#--5重啟cm主節點的server服務

systemctl   restart  cloudera-scm-server

#--6進入172.6.10.20:7180頁面,重啟cdh集群和cloudera management服務


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM