本月博客排行
-
第1名
wy_19921005 -
第2名
mft8899 -
第3名
benladeng5225 - duanfei
- Anmin
- wddpwzzhao123
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
wy_19921005 - benladeng5225
- vipbooks
- kaizi1992
- tanling8334
- sam123456gz
- arpenker
- zysnba
- fantaxy025025
- xiangjie88
- wallimn
- e_e
- jh108020
- ganxueyun
- Xeden
- xyuma
- wangchen.ily
- zhanjia
- johnsmith9th
- zxq_2017
- forestqqqq
- jbosscn
- daizj
- xpenxpen
- 青否云后端云
- 喧嚣求静
- kingwell.leng
- lchb139128
- kristy_yy
- javashop
- lzyfn123
- sunj
- yeluowuhen
- ajinn
- lerf
- lemonhandsome
- chenqisdfx
- xiaoxinye
- lyndon.lin
- flashsing123
- bosschen
- zhangjijun
- sunnylocus
- lyj86
- paulwong
- sgqt
- hudiemeng870329
- mft8899
最新文章列表
git server 慢的问题,应该是 ssh变慢了
http://www.linuxquestions.org/questions/debian-26/systemd-logind-slow-logins-4175543760-print/执行了 sudo apt-get update systemctl restart systemd-logind
SSH 常见使用及问题
关于ssh实现无密登录server,连接操作github之类的找google大叔即可;
<1> SSH私钥取消密码(cancel passphrase )
以前使用的ssh密钥设置时候是有密码的,这样每次同步时候还需要手动输入一次密码才可以。
Google后有人提示可以使用.bash_profile配合ssh-agent来实现每次自动加 ...
Eclipse搭建SSH(Struts2+Spring3+Hibernate3)框架项目教程
http://blog.csdn.net/yeohcooller/article/details/9316923
http://blog.csdn.net/shan9liang/article/details/8803989
hadoop实战-02.ubuntu 配置ssh免密码登录
下载安装ssh
#sudo apt-get install openssh-server
开启ssh服务
#sudo /etc/init.d/ssh start
查看服务是否正确启动
#ps -e|grep ssh
在当成目录生成一对公钥和私钥
#ss ...
JavaEE SSH框架整合
spring框架是使用myeclipse自动集成的3.0,hibernate框架使用myeclipse自动集成的3.3,struts2是手动加载的。下面贴上图片。
运行Tomcat 控制台出现错误提示如下:
严重: Exception starting filter struts2
java.lang.RuntimeException: com.opensymphony.xwork2.injec ...
SSH集成之查询语句输出但没有查到数据
小编我今天写程序时遇到了个问题,在SSH框架中做查询操作时 hql语句输出来了,但是却没有查到结果,将hql语句放到Oracle数据库中却可以查到数据 废话不多说 下面贴代码
BaseDAO中的方法
protected List<T> findall(final String hql){
return this.getHibernateTemplate().execute ...
采用TCL脚本实现自动登陆服务器并执行脚本
#!/usr/bin/expect
#设置变量
set passwd "xxx;123"
puts {you want to deploy war , please enter the pool name:}
#从键盘获取输入内容
flush stdout
set pool_name [gets stdin]
puts "you want to deploy $p ...