08 2015 档案

摘要:1. 下载和安装: http://ssdb.io/docs/zh_cn/install.html 2. SSDB 文档 http://ssdb.io/docs/zh_cn/index.html 3. 阅读全文
posted @ 2015-08-25 21:51 Jtianlin 阅读(174) 评论(0) 推荐(0)
摘要:1. service iptables status可以查看到iptables服务的当前状态。 但是即使服务运行了,防火墙也不一定起作用,你还得看防火墙规则的设置 iptables -L 在此说一下关于启动和关闭防火墙的命令: 1). 重启后生效 开启: chkconfig iptables ... 阅读全文
posted @ 2015-08-24 15:23 Jtianlin 阅读(183) 评论(0) 推荐(0)
摘要:1. cookie相关操作 1). 设置cookie共享 Cookie cookie = new Cookie("pkId",sysUser.getPkId()+""); cookie.setDomain("bsp.bioeh.com"); cookie.setPath("/bsp... 阅读全文
posted @ 2015-08-23 16:39 Jtianlin 阅读(173) 评论(0) 推荐(0)
摘要:1. MySQL在Linux下数据库名、表名、列名、别名大小写规则是这样的: 1). 数据库名与表名是严格区分大小写的; 2). 表的别名是严格区分大小写的; 3). 列名与列的别名在所有的情况下均是忽略大小写的; 4). MySQL在查询字符串时是大小写不敏感的。如某字段值需要区分大小写,可在定义 阅读全文
posted @ 2015-08-23 16:16 Jtianlin 阅读(209) 评论(0) 推荐(0)
摘要:1. 在centos下安装g++,如果输入 yum install g++,那么将会提示找不到g++。因为在centos下g++安装包名字叫做:gcc-c++ 所以应该输入 yum install gcc-c++,即可。 2. You need tcl 8.5 or newer in order t 阅读全文
posted @ 2015-08-14 20:40 Jtianlin 阅读(198) 评论(0) 推荐(0)
摘要:1. velocity获取字符串长度方法: 用length()就可以了,截取子字符串用substring(0,10) 。$str.substring(0,3) 集合获取集合长度用:size() 2. volecity遍历map: #foreach($infos in $lineBusiness.en 阅读全文
posted @ 2015-08-07 21:20 Jtianlin 阅读(473) 评论(0) 推荐(0)
摘要:1.在centos下安装g++,如果输入 yum install g++,那么将会提示找不到g++。因为在centos下g++安装包名字叫做:gcc-c++ 所以应该输入 yum install gcc-c++,即可。2. 文件传输工具rz安装: 1). 查找是否自带rz安装包: yum l... 阅读全文
posted @ 2015-08-07 21:07 Jtianlin 阅读(137) 评论(0) 推荐(0)
摘要:1. ultraEdit设置禁止自动更新: 菜单栏:高级->配置->应用程序布局->其他 取消勾选“自动检查更新” 2. xshell 传输文件中设置编码,防止乱码: 文件 -- 属性 -- 选项 -- 连接 -- 使用UTF-8编码 3. 乱码修改:修改tomcat下配置中,修改: <Connec 阅读全文
posted @ 2015-08-07 20:56 Jtianlin 阅读(190) 评论(0) 推荐(0)
摘要:1. SSDB中scan key_start key_end limit ,key_start 和 key_end 是指字母的顺序,不是数字。 2. 进入客户端:./ssdb-cli -p 8888 阅读全文
posted @ 2015-08-07 20:54 Jtianlin 阅读(259) 评论(0) 推荐(0)
摘要:推荐博客: Redis在linux上的安装: http://www.open-open.com/lib/view/open1426468117367.html Redis的三种启动方式: http://futeng.iteye.com/blog/2071867 Redis学习手册(目录): http 阅读全文
posted @ 2015-08-03 20:42 Jtianlin 阅读(289) 评论(0) 推荐(0)