- 浏览: 1541796 次
- 性别:
- 来自: 北京
最新评论
-
lialatd:
您好,我用您的方法通过java api往jira系统中添加is ...
JIRA REST API ---- JAVA -
sprcen945:
可以了,是因为没加intercept-url 的拦截, 尼玛, ...
SpringSecurity3.X--Cas client 配置 -
sprcen945:
请问为什么我配了security.xml后切入点不起作用(之前 ...
SpringSecurity3.X--Cas client 配置 -
linxingyul:
根据楼主的代码 继承了WebMvcConfigurationS ...
SpringMVC4零配置--Web上下文配置【MvcConfig】 -
java_老头:
MvcConfig.java的FilterType.ANNOT ...
SpringMVC4零配置--Web上下文配置【MvcConfig】
文章列表
centOS7下zabbix-server和zabbix-agent的安装;
windows7下zabbix-agent的安装;
图文详情请下载附件。
一、zabbix-server安装
#服务器ip地址:192.168.37.1441.zabbix-server安装
#安装zabbix仓库
rpm -ivh http://repo.zabbix.com/zabbix/3.2/rhel/7/x86_64/zabbix-release-3.2-1.el7.noarch.rpm
#安装zabbix服务器端
yum install zabbix-server-mysql ...
Rancher通过web交互方式,可以实现对多个docker主机的管理,快速方便的部署及管理多个容器,并对容器提供图形化的的监控页面。
本文只对Rancher的基本使用方法做了介绍,并以一个示例进行了实际的配置说明。
示例说明:1个负载均衡服务+4个wordpress服务+1个mysql服务。
Rancher提供中文界面,所以使用起来比较方便,但是官方帮助文档并没有提供中文版。
官网:http://docs.rancher.com/rancher/v1.2/en/
启动容器时,有可能会遇到如下问题,比如启动redis容器:
sudo docker run -d -p 6379:6379 --name redis redis:latest
docker: Error response from daemon: failed to create endpoint redis on network bridge: iptables failed: iptables --wait -t nat -A DOCKER -p tcp -d 10.211.55.9 --dport 6379 -j DNAT --to-destination 172.17.0.4:6 ...
一、镜像加速
1)注册个帐号
https://dev.aliyun.com/search.html
阿里云会自动为用户分配一个镜像加速器的地址,登录后进入"管理中心"-->"加速器",里面有分配给你的镜像加速器的地址以及各个环境的使用说明。
镜像加速器地址:https://xxxxx.mirror.aliyuncs.com
2)在docker主机上执行如下命令
# 系统要求 CentOS 7 以上,Docker 1.9 以上。
一、mysql
参考资料:https://hub.docker.com/_/mysql/
1.下载mysql镜像
sudo docker pull mysql
2.启动mysql容器
sudo docker run -d -p 3306:3306 --name dbmysql -e MYSQL_ROOT_PASSWORD=password -v /mysql/datadir:/var/lib/mysql -v /mysql/conf:/etc/mysql/conf.d docker.io/mysql:latest
-e MYSQL_ROOT_PASSWORD=pas ...
docker 三剑客:docker-machine docker-compose docker-swarm
docker-compose资料:https://docs.docker.com/compose/
查看最新版本:https://github.com/docker/compose/tree/release/compose
当前的最新版为1.8.1
下载并安装docker-compose:
[root@centos-linux ~]# uname -s
Linux
[root@centos-linux ~]# uname -m
x86_64
[r ...
registry V2说明文档 :https://docs.docker.com/registry/deploying/
【重要】registry v2安装参考资料:
http://www.open-open.com/lib/view/open1456539405281.html
下载registry镜像:
以centos7镜像为例
制作一个基础容器,支持sshd,及常用的相关命令
一、使用commit命令创建镜像
1.启动一个容器
sudo docker run -it centos:latest /bin/bash
注:以下操作均为容器内
Docker使用过程中可能遇到的问题:http://www.tuicool.com/articles/u6rumiE
centos7安装docker使用如下方式:
sudo yum update
sudo yum install docker
sudo service docker start
sudo chkconfig docker on
参考资料:http://blog.csdn.net/kenhins/article/details/51233776
1.pom.xml增加hibernate自动代码插件
1)2.2版本
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>hibernate3-maven-plugin</artifactId>
<version>2.2</version>
<configuration> ...
参考资料:http://blog.csdn.net/sunny243788557/article/details/45166397
1.pom.xml:加入插件配置
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.2</version> ...
官方网站:https://github.com/alibaba/druid/wiki/常见问题
主要功能:sql监控,uri监控,session监控等等
项目中只要引入2个jar包:druid.jar log4j.jar
相关配置:
web.xml配置
<!-- druid 数据源,用于采集 web-jdbc 关联监控的数据 -->
<!-- 具体参考官网:https://github.com/alibaba/druid/wiki/%E9%85%8D%E7%BD%AE_%E9%85%8D%E7%BD%AEWebStatFilter-->
&l ...
主要对Eclipse结合Git的使用、中心仓库github,gitlab,gogs的简单介绍,以及jenkins结合git获取代码进行了简单的说明,,具体详见附件吧。
Git中文参考资料:http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000
p6spy可以将hibernate的hql或者ibatis中的占位符『? , :name』等等转换为标准sql进行输出。
下载地址:
http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22p6spy%22%20AND%20a%3A%22p6spy%22
说明文档:
http://p6spy.github.io/p6spy/2.0/configandusage.html#confusage
使用方式(1.X和2.X的配置方式略有不同,这里以2.X版本配置mysql为例):
1.将p6spy-2.X.jar拷贝到 ...
升级到tomcat8+版本后,原先项目中的软连接目录都不好用了,查了一下资料发现是配置发生了改变,
参考资料:https://tomcat.apache.org/migration-8.html
For example:
<!-- Tomcat7 -->
<Context docBase="/Users/hanqunfeng/eclipse_workspaces/luna_workspace/boss_manage/WebContent" path="/boss_manage" reloadable="false ...