1.useradd git2.cd git mkdir project.git cd project.git3.git init --bare4.vi config 添加 denyCurrentBranch = ignore5.ssh-keygen -t rsa6. ssh-copy-id -i ....
分类:
其他好文 时间:
2015-05-07 16:32:12
阅读次数:
93
#!/usr/bin/expect -fspawn scp /shell/bms3acount.txt root@192.168.35.186:/root/BMS/set timeout 20expect "(yes/no)?" {send "yes\r"}expect "password:" {s...
分类:
其他好文 时间:
2015-05-06 14:59:24
阅读次数:
168
先复习一下设置ssh免密码操作的步骤:进入主目录cd生成公钥ssh-keygen -t rsa -P '' (注:最后是二个单引号,表示不设置密码)然后分发公钥到目标机器ssh-copy-id -i ~/.ssh/id_rsa.pub 对方机器IP (注意不要忘记了参数-i)注:ssh-copy-i...
分类:
其他好文 时间:
2015-05-06 14:59:09
阅读次数:
139
ssh-agent一直不知道啥是ssh-agent,今晚看了几篇文章,终于领悟到了。一般的ssh过程
ssh-keygen 生成一个公钥私钥,注意,这里生成私钥的时候可以选密码,也可以不选密码。 openssh牛的地方在于能用key 登陆,而非用密码。
然后做免密码登陆,一般是复制到.ssh/authorized_keys ,或者用ssh-copy-id 。
其实第二步做完以后基本上就不输密码登陆。...
分类:
其他好文 时间:
2015-05-05 06:35:57
阅读次数:
123
RHEL6node1192.168.1.7node2192.168.1.8双机互信进192.168.1.7
#ssh-keygen-trsa~/.ssh/id_rsa
#ssh-copy-id-i~/.ssh/id_rsa.pubroot@192.168.1.8
进192.168.1.8
#ssh-keygen-trsa~/.ssh/id_rsa
#ssh-copy-id-i~/.ssh/id_rsa.pubroot@192.168.1.7编辑/etc/hosts文件127.0.0.1lo..
分类:
数据库 时间:
2015-05-03 23:48:35
阅读次数:
296
共有三台机器192.168.2.21192.168.2.22192.168.2.24都建有zabbix这个用户,密码统一为zabbix192.168.2.21为资源分发中心,zabbix用户用于秘钥分发hosts是一个文本文件,用于存储ip列表#!/bin/bashforXin`cathosts`doexpect-c"settimeout-1spawnssh-copy-idzabbix@${X}expect\"*..
分类:
其他好文 时间:
2015-05-02 23:30:54
阅读次数:
154
#!/usr/bin/expect -f
set timeout 10
set name [lindex $argv 0]
set pwd [lindex $argv 1]
set ip [lindex $argv 2]
spawn ssh -l $name $ip
expect "password:"
send "$pwd\r"
interact...
分类:
其他好文 时间:
2015-04-27 11:22:01
阅读次数:
110
数据库相关操作
1、创建数据库
create database databasename
成功返回Query OK
失败返回Error 1007
2、查看所有的数据库
show databases
注意:是databases,复数
3、选择数据库
use databasename
返回是Database changed 知道这个在使用expect时有用
失败返回Err...
分类:
数据库 时间:
2015-04-26 10:53:48
阅读次数:
215
完成此脚本,主要是为了将本地服务器上的文件同步到腾讯云跳板机,然后再中转上传到腾讯云服务器。当然这也只是初步的方案。#vim/data/scripts/put_file.exp#!/usr/bin/expect
########################################################################
#pushlocalserver’sf..
分类:
其他好文 时间:
2015-04-25 16:49:00
阅读次数:
189
适配器模式英文原文是:Convert the interface of a class into anther interface clients expect. Adapter lets classes work together that couldni`t otherwise because of incompatible interface. 意思是将一个类的接口变化成客户端所期待的另一种...
分类:
其他好文 时间:
2015-04-23 11:07:25
阅读次数:
142