hadoop机器 linux本身配置

1.配置open file数量

以root用户登录

vi /etc/security/limits.conf

在文件后面增加下面配置,保存,退出,再登录就生效

*               soft    nofile          32768

*               hard    nofile          32768



2.配置最大进程数

ulimit -u

用户启动的最大线程数

root下启动的进程数,可能和其他用户下启动的进程数据不一样


加入.bash_profile

for i in {1 2 3 4 5 6 7 8 9};do ssh hadoop00${i} "echo 'ulimit -u 65535' > /home/game/.bash_profile" ;done

source下 for i in 1 2 3 4 5 6 7 8 9;do ssh game@hadoop00${i} "source /home/game/.bash_profile" ;done

检查   for i in 1 2 3 4 5 6 7 8 9;do ssh game@hadoop00${i} "ulimit -a" ;done

  

3.保证免登陆

保证ssh localhost能够访问

保证域名简称能免登陆,例如将hadoop009 的ip配置了两份

111 hadoop009

111 h9 


你可能感兴趣的:(hadoop机器 linux本身配置)