码迷,mamicode.com
首页 > 其他好文 > 详细

lab-bill-common-supcon-davidey

时间:2014-07-20 15:41:31      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:lab-bill-common-supcon-davidey

每一个集成环境都缺不了一个中控服务器我们这里姑且叫它操控服务器(supcon)吧,今天介绍一下,该lab-bill-davidey清单里的公共服务(common)模块supcon服务器。

 

工程化平台就是在这里,ssh免密码登录集成环境的所有主机,这里存放所以的管理脚本。

ssh免密码配置如下:

sudo service sshd start

sudo chkconfig sshd on

vi /etc/ssh/ssh_config

StrictHostKeyChecking no

sudo service sshd restart

ssh-keygen -t ras

ssh-copy-id slave1

ssh oracle@hadoop

configuration is successful!

 

#!/bin/sh

ssh-keygen -t rsa -P ‘‘ -f ~/.ssh/id_rsa

cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys

ssh-keygen一般来说需要输入passphrase,但是一般都是三个回车过去了,我懒的输入,加上-P ‘‘就不用了。

 

add public key

#!/bin/sh

read -p "please input your IP: "ip

ssh-copy-id -o StrictHostKeyChecking=no -i~/.ssh/id_rsa.pub root@$ip

ssh root@$ip ‘sed -i"s/^#RSAAuthentication\ yes/RSAAuthentication\ yes/g"/etc/ssh/sshd_config‘

ssh root@$ip ‘sed -i"s/^#PubkeyAuthentication\ yes/PubkeyAuthentication yes/g"/etc/ssh/sshd_config‘

ssh root@$ip ‘sed -i"s/^#PermitRootLogin\ yes/PermitRootLogin\ yes/g"/etc/ssh/sshd_config‘

ssh root@$ip ‘service sshd restart‘

hostname=`ssh root@${ip} ‘hostname‘`

echo "add the hostname to local/etc/hosts"

echo "$ip    $hostname" >> /etc/hosts

echo "please check /etc/hosts"

echo "ok"

 

copy to others

#!/bin/sh

cat /etc/hosts | while read LINE

do

   ip=`echo $LINE | awk ‘{print $1}‘ | grep -v "::" | grep -v"127.0.0.1"`

   echo "Copying /etc/hosts to ${ip}"

   scp -o StrictHostKeyChecking=no /etc/hosts root@${ip}:/etc/

done

 

很晚完成才文档,尽管每一天工作强度很大,还是愿意与大家一起进步。呵呵每天进步一点。

 

后续介绍其他模块,有什么问题敬请大家不要吝啬指出,一同改进。欢迎大家和大家的技术发烧友一起加入我们的qq262407268,共建我们的《云络智慧城市》


本文出自 “DavideyLee” 博客,请务必保留此出处http://davideylee.blog.51cto.com/8703117/1440440

lab-bill-common-supcon-davidey

标签:lab-bill-common-supcon-davidey

原文地址:http://davideylee.blog.51cto.com/8703117/1440440

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!