- 浏览: 536953 次
最新评论
-
lord_is_layuping:
哇喔,好用哎,哈哈哈哈哈
cygwin less UTF-8 乱码
文章列表
vsftpd根目录权限设置
1、必须关掉selinux iptables
setenforce 0 或 vi /etc/selinux/config disable
service iptables stop 或 chkconfig iptables off
2、根目录权限必须为755 用户为root
默认根目录位置为/var/ftp
可以通过修改ftp用户的家目录,修改为其它目录
3、有写权限的目录为根目录的子目录,且权限为777
/var/ftp/pub
#/etc/pam.d/vsftpd
session optional pam_keyinit.so for ...
putty文件夹文字看不清
- 博客分类:
- linux
putty文件夹的颜色看不清,蓝色的发亮,
作如下调整 change Setting-->colors--->ANSI blue,原始值为
red 0 green 0 blue 187
red 0 green 155 blue 187
点击apply即可。 这个苹果绿,或者称豆沙绿,的具体色彩值是:色调(Hue)84、饱和度(Sat)91、亮度(Lum)205。对应RGB值为(204, 232, 207),对应网页色彩值为#CCE8CF
让眼睛舒服的颜色还有
草绿(56,94,15)推荐,
浅绿色(144,238,144),
浅蓝色 ...
OpenVPN配好了,客户端连接时却报以下错误
TLS Error: TLS key negotiation failed to occur within 60 seconds (check your network connectivity)
TLS Error: TLS handshake failed
查阅资料,说是网络有可能有问题,路由器没有开nat,或者其它的网络问题。
想来可能是防火墙限制了,是否是防火墙的问题,需要试一下
有两种方式,第一种方式,使用不受限的SSL端口443和TCP协议
#/etc/openvpn/server.conf
Server
. ...
使用linux服务器作为http的代理,是一种比较简单快速的上网方式
或者把服务器配置为网关
以下为配置为http代理的方式
原文
引用
Tinyproxy是一个小型的基于GPL的HTTP/SSL代理程序,非常适合小型网络而且便于快速部署。这个代理程序最大的优点就是占用系统资源比较少。这里使用的系统为CentOS5.6,可以直接yum方式安装。
安装epel源:
rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm
安装Tinyproxy:
yum ...
nginx ssi 无效的原因
- 博客分类:
- linux
nginx SSI默认只支持HTML后缀的页面,但是前提是服务器web server 服务器未启用gzip,如果启用了gzip,nginx的SSI会失效.
ehcache-web缓存的使用和清除
- 博客分类:
- java
引入jar包
<!--ehcache缓存-->
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-web</artifactId>
<version>2.0.4</version>
</dependency>
配置ehcache.xml
&l ...
优化tomcat应用的性能
- 博客分类:
- java
#catalina.bat
set JAVA_OPTS=-server -Xms2048M -Xmx2048M -Xss512k -XX:+AggressiveOpts -XX:+UseBiasedLocking -XX:PermSize=256M -XX:MaxPermSize=512M -XX:+DisableExplicitGC -XX:MaxTenuringThreshold=25 -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSParallelRemarkEnabled -XX:+UseCMSCompactAtFullColle ...
dubbo 直连测试配置
- 博客分类:
- java
(1) 如果是线上需求需要点对点,可在<dubbo:reference>中配置url指向提供者,将绕过注册中心,多个地址用分号隔开,配置如下:(1.0.6及以上版本支持)
<dubbo:application name="xxxxx"/>
<dubbo:reference id="xxxService" interface="com.alibaba.xxx.XxxService" url="dubbo://localhost:20890" />
直连提供者
jsp中使用spring的property属性
- 博客分类:
- java
stackoverflow里的大神已经给了方案
引用
You can load the properties using java.util.Properties (or commons-configuration) in a ServletContextListener's contextInitialized(..) method.
register the listener with <listener> in web.xml
You then store the Properties into the ServletContext (you can ...
vsftpd delete 550
- 博客分类:
- linux
#vsftpd.conf配置文件
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
chown_uploads=YES
xferlog_std_format=YES
chroot_local_user=NO
chroot_list_enable=YES
listen=YES
pam_service_name=vsftpd
userlist_enab ...
centos7 mysql5.7.10安装
- 博客分类:
- 数据库
下载安装文件
mysql-5.7.10-1.el6.x86_64.rpm-bundle.tar
#安装命令
tar xvf mysql-5.7.10-1.el6.x86_64.rpm-bundle.tar
-rw-r--r-- 1 root root 439234560 Nov 30 21:47 mysql-5.7.10-1.el6.x86_64.rpm-bundle.tar
-rw-r--r-- 1 7155 wheel 23788680 Nov 30 20:48 mysql-community-client-5.7.10-1.el6.x86_64.rpm
-rw-r ...
linux 搜文件内容
- 博客分类:
- linux
grep -r --include="*.java" "keywords" ./code/
eclipse maven插件 不能正确解析包名
- 博客分类:
- java
eclipse里的M2E插件,不能正常解析Java 源代码里的包名,重新安装插件还是不行
直接修改.classpath文件内容
<!-- .classpath 文件内容 -->
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<a ...
由于download.eclipse.org域连接较慢,安装eclipse插件时,要连接半天,可以使用eclipse的国内镜像进行安装
好用的镜像
原创博客
引用
有以下几个好用的mirror:
download.actuatechine.com/
mirror.bit.edu.cn
mirrors.ustc.edu.cn
mirror.bjtu.edu.cn
下载nginx配置镜像
http://nginx.org/en/download.html
#nginx.conf
server {
listen ...
最近搞的项目用到maven,在进行断点调试的时候总是报source not found,点击了"Edit Source Lookup Path"添加了工程也都无济于事
经过一番尝试,终于找到解决方法。
在一开始创建maven的debug的时候,就把资源添加进去,这样就能进行正常的debug了。
在run--》run configurations-->选中命令--》source-->add-->project-->勾选要
debug的项目,保存后再次debug就可以定位到源码了。
参考 洋葱头的专栏
eclipse在maven下的断点debug ...