for ip in 102 103 104 111 112 113 114 115 116 121 122; do sudo scp /etc/sudoers root@192.168.5.$ip:/etc/sudoers ;done
分类:
其他好文 时间:
2014-07-16 23:04:33
阅读次数:
169
./pdsh -R ssh -w node-10-0[0-5] hostname-R:指定传输方式,默认为rsh,本例为ssh,如果希望ssh传输需要另行安装pdsh-rcmd-ssh,如果希望ssh无密码访问需要提前配置好。-w:指定待执行命令host,也可以这样配置,node_[1-9, 35,...
分类:
其他好文 时间:
2014-07-16 21:42:57
阅读次数:
275
1. 下载扩展官方地址http://pecl.php.net/package/libevent请根据自己的PHP脚本选择相应版本如wget http://pecl.php.net/get/libevent-0.0.4.tgz2. 下载 wget http://pecl.php.net/get/...
分类:
Web程序 时间:
2014-07-16 21:01:22
阅读次数:
793
location.hash 设置或获取 href 属性中在井号“#”后面的分段。location.host 设置或获取 location 或 URL 的 hostname 和 port 号码。location.hostname 设置或获取 location 或 URL 的主机名称部分。locatio...
分类:
Web程序 时间:
2014-07-12 08:38:26
阅读次数:
275
//Situation System prompts that:"wget: unable to resolve host address".//Analysis Unable to resolve host address means the problem of DNS(Domain Nam.....
分类:
其他好文 时间:
2014-07-11 22:31:13
阅读次数:
187
1、VPSMate安装# wget http://www.vpsmate.org/tools/install.py# python install.py2、安装好了VPSMate后,还要安装IUS源,执行以下命令(注意版本):yum -y install gccyum -y install gcc-...
分类:
数据库 时间:
2014-07-11 21:57:59
阅读次数:
392
wget--user=user--password=passwordurlcurl-uuser:passwordurl可以使用这个来实现网页的登陆和下载
分类:
Web程序 时间:
2014-07-10 18:37:45
阅读次数:
212
一、验证(Authentication)1.1ACS上添加AAAClient1.进入ACS,点击NetworkConfiguration,2.点击AddEntry,添加AAAclient3.填入HostName,ClientIPAdd、sharedsecret、AuthenticateUsing选择TACACS+(CiscoIOS),确认无误,点击submit+Apply.1.2交换机配置:Switch(config)aaanew-mod..
分类:
其他好文 时间:
2014-07-10 17:54:05
阅读次数:
325
登陆mysqlmysql -u username -p创建用户名配置权限,这里为该用户配置tablename表的全部权限,也可以指定GRANT ALL PRIVILEGES ON tablename.* TO 'username'@'hostname' IDENTIFIED BY 'password...
分类:
数据库 时间:
2014-07-10 16:08:59
阅读次数:
209
Rsync(remote synchronize) 是一个远程数据同步工具,可以使用“Rsync算法”同步本地和远程主机之间的文件。
rsync的好处是只同步两个文件不同的部分,相同的部分不在传递。类似于增量备份,
这使的在服务器传递备份文件或者同步文件,比起scp工具要省好多时间。
具体的用法:
1.在本地机器上对两个目录同步
$ rsync -zvr filena...
分类:
其他好文 时间:
2014-07-09 10:39:52
阅读次数:
234