- 浏览: 27902 次
- 来自: 北京
最新评论
-
forcer521:
不是,只是把记在自己记事本上的发上来了,防止丢失:)
How to resole "ssh localhost" failed when config Hadoop -
tomfish88:
自动发帖么?
How to resole "ssh localhost" failed when config Hadoop
文章列表
import java.io.File;
import com.drew.imaging.ImageMetadataReader;
import com.drew.metadata.Directory;
import com.drew.metadata.Metadata;
import com.drew.metadata.exif.ExifIFD0Directory;
import com.drew.metadata.exif.ExifSubIFDDirectory;
public class TestExif {
/**
* @param args
...
Java 从流中正确读取字节
/**
* 测试用途,把响应写入文件
*
* @param in
*/
private void dumpToFile(InputStream in) {
FileOutputStream fos;
try {
String fileName = "/tmp/res-" + System.currentTimeMillis() + ".dmp";
log.debug("fileName: " + fileName);
...
ActiveMQ 5.5.1 安全配置
1、ActiveMQ Web Console 安全配置
修改 conf/jetty.xml
<bean id="securityConstraint" class="org.eclipse.jetty.http.security.Constraint">
<property name="name" value="BASIC" />
<property name="roles" v ...
//禁止打开新的IE窗口所有的浏览都保持在一个IE中
function forbidOpenNewIEwindows(){
for(var i = 0; i<document.links.length;i++)
{
document.links.item(i,0).outerHTML = document.links.item(i,0).outerHTML.replace('target=_blank','');
}
}
通过用UltraEdit32打开 IETester.exe 文件,然后在十六进制模式下查找83 F8 0C 7F 05 6A
0B,然后将其修改为83 F8 0D 7F 05 6A 0C 后保存。
以后再有软件的菜单字体有类似问题,不妨还按这个方法试验下,也许这个方法适用于修改所有exe文件的菜单字体。
此方法同样适用于最新版本的 IETester 0.4.11
java.security.Security 支持的安全策略和算法
SUN : SUN (DSA key/parameter generation; DSA signing; SHA-1, MD5 digests; SecureRandom; X.509 certificates; JKS keystore; PKIX CertPathValidator; PKIX CertPathBuilder; LDAP, Collection CertStores, JavaPolicy Policy; JavaLoginConfig Configuration)
Algorithms:
...
官方插件:
JIRA Subversion Plugin : https://plugins.atlassian.com/plugin/details/291?versionId=437756
Documentation : https://studio.plugins.atlassian.com/wiki/display/SVN/Subversion+JIRA+plugin
TortoiseSVN Plugin for JIRA :
Download : https://github.com/csharptest/JiraSVN/download ...
今天看到微博上@hellodba发的一个帖子:“内部晋升越来越困难,但是外部来的大P越来越多,所以很多人都选择跳槽”,之后我从三个方面简要的进行了回答:“外面来的总是有包装的,内部的都是肉身PK,此一输;外面来的总是小股人马,内部的一批批的,升谁都伤感情,此二输;外面来的通常都是大佬推荐的,没有特别重大机会,人不会来,内部的就不解释了,成果都被大佬吸收,难有机会,此三输”。之后讨论不断,我也余兴未了,继续写来。
这个世界上有一类人特别苦逼,苦逼到什么程度呢?他们省吃俭用攒钱买房,结果房价越来越贵;公司外部竞争激烈,他们工作异常繁忙,披星戴月,日复一日;技术更新行业罕见,他们要随时调整心情,随时 ...
wget http://mirror.bjtu.edu.cn/apache/apr/apr-1.4.4.tar.gz
tar -xvf apr-1.4.4.tar.gz
mv apr-1.4.4 apr-1.4.4-src
cd apr-1.4.4-src
./configure --prefix=$HOME/apr-1.4.4
cd $HOME/tomcat6/bin
tar -xvf tomcat-native.tar.gz
cd ./tomcat-native-1.1.20-src/jni/native
./configure --prefix=$HOME/tomca ...
wget http://www.python.org/ftp/python/2.6.6/Python-2.6.6.tgz
tar -zxvf Python-2.6.6.tgz
mv Python-2.6.6 python2.6.6
cd python2.6.6
./configure --prefix=$HOME/python2.6.6
make && make install
有三种情况:
1. ssh localhost
error: connection refused at port 22
solution:
use root user to edit /etc/ssh/sshd_conf add:
ListenAddress 0.0.0.0:22
and
/etc/init.d/sshd restart
2. ssh localhost
error: Permission denied (publickey,gssapi-with-mic)
solution:
disable gssapi in /etc/ssh/sshd_conf:
...
解决之法(仅供参考):
在Firefox地址栏输入about:config,然后在右键新建一个字符串键network.security.ports.banned.override,将需访问网站的端口号添加到,值就是那个端口号即可。
如有多个,就半角逗号隔开,例:81,88,98在能保证安全的前提下,还简化成这样写0-65535。这样,就可以浏览任意端口的网站了。
CentOS 5.5,部署好Tomcat之后却发现输入114.80.*.*:8080(即ip:8080)却无法显示Tomcat默认的首页。因为以前部署在Win Server的VPS,Linux开发时也只用到localhost,所以就有点头大。
好吧,G一下网上有说是防火墙的问题,敲入
/etc/init.d/iptables stop
关闭之后再次查看114.80.*.*:8080(即ip:8080)发现果然成功。但是貌似安全隐患大大增加……使用
/etc/init.d/iptables status
查看防火墙信息,可以看到打开的端口。那么我们把需要使用的端口打开 ...