- 浏览: 25346 次
- 性别:
- 来自: 北京
最新评论
文章列表
spring 切面表达式(通配描述)
- 博客分类:
- Spring
.* 在路径表达上代表包通配,在表达方法上是代表所有方法
..* 在路径表达上代表包及子包通配,在表达方法上是代表当前包及子包所有类的所有方法
execution(* org.test..*.*(..))
代表org.test包及子包下面所有类的所有方法
execution(* org.test..*(..))
同上
within(org.test.*)
代表org.test包下面所有类的所有方法
within(org.test..*)
代表org.test包及子包下面所有类的所有方法
within(org.test ...
1.A read-only user or a user in a read-only database is not permitted to disable read-only mode on a connection.
默认启动情况下metastore_db在hive的bin目录下.
cd /var/lib/hive/metastore/metastore_db
chmod a+rwx . --recursive
cd /var/lib/hive/metastore/metastore_db
rm *.lck
2.User:* is not all ...
声明:文中搭建的redis sentinel 只用于开发环境,生产环境请采用多点部署。
wget http://download.redis.io/releases/redis-3.0.7.tar.gz
转自:http://www.catharinegeek.com/set-up-mysql-cluster-on-ubuntu-14041/
Overview
Recently, I setup mysql cluster on 4 computers with Ubuntu 14.04.1.
Assume that these 4 computers have names from A to D, ips from 192.168.1.101 to 192.168.1.104.
The basic structure is as below:
Computer A is ma ...
新建索引启用过期设置:
PUT testindex
{
"mappings": {
"testtype": {
"_ttl": {
"enabled": true
}
}
}
}
插入文档:
PUT testindex/testtype/1?ttl=10m
{
"text": "Will expire in 10 minutes"
}
如果不添加ttl过期参数则文档默认不过期,可以 ...
系统:CentOS 64位.
1.Maven编译CloudStack时会在访问libvirt.org会出现拒绝情况可以通过以下命令找出问题所在virsh -c libvirt.org
问题有两类:
http://wiki.libvirt.org/page/Failed_to_connect_to_the_hypervisor
1.证书不存在.
2.驱动不存在.
证书不存在问题解决办法:
1. cd /etc/pki/CA
创建私有证书:
1.创建certificate_authority_template.info的模板文件
文件内容: ...