#GIN

Nginx负载均衡的五种策略

nginx可以根据客户端IP进行负载均衡,在upstream里设置ip_hash,就可以针对同一个C类地址段中的客户端选择同一个后端服务器,除非那个后端服务器宕了才会换一个。nginx的upstream目前支持的5种方式的分配1、轮询(默认)每个请求按时间顺序逐一分配到不同的后端服务器,如果后端服务器down掉,能自动...

Nginx服务状态的监控

一、安装Nginx使用源码编译安装,包括具体的编译参数信息。正式开始前,编译环境gccg++开发库之类的需要提前装好。安装make:yum-yinstallgccautomakeautoconflibtoolmake安装g++:yuminstallgccgcc-c++一般我们都需要先装pcre,zlib,前者为了重写r...
代码星球 ·2020-04-04

Linux下Nginx+多Tocat下的负载均衡环境的简单搭建

本文主要分为四个部分:1、Nginx的搭建;2、JDK+Tomcat的搭建;3、静态HTML的访问配置;4、负载均衡的配置=======================================================一、Nginx的简介二、Nginx的安装1、安装编译工具及库文件yum-yinstall...

margin四个元素的顺序

如果margin给的是四个值比如:margin:0px0px0px0px;代表:margin:toprightbottomleft代表从上右下左,顺时针方向。如果margin给的是三个值比如:margin:0px0px0px;代表:margin:top left-rightbottom;代表上左右下.中间一个...
代码星球 ·2020-04-04

Eclipse4.6安装Tomcat插件时报错:Unable to read repository at http://tomcatplugin.sf.net/update/content.xml. Received fatal alert: handshake_failure

错误如下:Unabletoreadrepositoryathttp://tomcatplugin.sf.net/update/content.xml.Receivedfatalalert:handshake_failure 由于使用的是Eclipse4.6.3,导致安装时提示不能安装此插件,解决方法如下:1、...

Eclipse导入Maven项目出现:Could not calculate build plan: Plugin org.apache.maven.plugins:maven-war-plugin:2.2

错误如下:Couldnotcalculatebuildplan:Pluginorg.apache.maven.plugins:maven-war-plugin:2.2oroneofitsdependenciescouldnotberesolved:Failedtoreadartifactdescriptorfororg...

Maven配置将war包部署到Tomcat(tomcat7-maven-plugin)

Tomcat7/8:提示:经过测试Tomcat7的配置和插件在Tomcat8中能正常运行tomcat7-maven-plugin官方帮助文档:http://tomcat.apache.org/maven-plugin-2.0/tomcat7-maven-plugin/1、配置Tomcat认证,增加账号及配置manage...

Maven自动部署(SCM-SVN/Git)(maven-scm-plugin/maven-release-plugin插件的使用)

以下内容引用自https://ayayui.gitbooks.io/tutorialspoint-maven/content/book/maven_deployment_automation.html:注意:Maven自动构建和自动部署的区别在于,构建只是编译代码阶段,而部署是一整套代码获取到编译再到打包发布的完整流程...

Maven实现多个项目关联自动化构建(maven-invoker-plugin插件的使用)

以下内容引用自https://ayayui.gitbooks.io/tutorialspoint-maven/content/book/maven_build_automation.html:注意:由于时间问题,原文的方法已经无法使用,在此我更新了最新的方法去实现。同时也是官方原版的方法:https://www.tut...

Jenkins使用Publish Over FTP Plugin插件上传FTP详解

一、安装插件【PublishOverFTP】二、在【系统管理】->【系统设置】->【PublishoverFTP】->点击【增加】按钮,增加一个要连接的FTP:FTPServerName:FTP名字Hostname:主机IP或者域名Username:ftp登陆用户名Password:ftp密码Remo...

Jenkins的错误“error fetching remote repo origin”的问题解决

错误如上,解决方法收集,可以尝试以下方法:http://stackoverflow.com/questions/38391601/jenkins-error-error-fetching-remote-repo-originhttps://issues.jenkins-ci.org/browse/JENKINS-267...

Maven中plugins和pluginManagement的区别

pluginManagement是表示插件声明,即你在项目中的pluginManagement下声明了插件,Maven不会加载该插件,pluginManagement声明可以被继承。pluginManagement一般是用来在父POM中定义,提供给子POM使用,子POM也可以覆盖这个定义,而且你在父POM中定义了版本之...

Maven打包时过滤测试代码或指定特定的测试类(maven-surefire-plugin)

1、过滤整个测试代码,可以直接在命令行上指定mvncleaninstall-Dmaven.test.skip=true提示:以上为举例,具体的构建阶段可以自定义,其中maven.test.skip为是否进行测试。或者mvncleaninstall-DskipTests还可以直接在pom.xml文件上指定,比如使用mav...

Jenkins构建完成后通过SVN Publisher Plugin上传文件到指定的SVN(教程收集)

SVNPublisherPlugin:https://wiki.jenkins-ci.org/display/JENKINS/SVN+Publisher构建完成后的文件,比如Maven打的war包,可以通过SVNPublisherPlugin插件上次到指定的SVN,下面是收集的教程:http://blog.csdn.n...

Maven插件maven-antrun-plugin的使用

以下引用官方的介绍http://maven.apache.org/plugins/maven-antrun-plugin/:一、什么是maven-antrun-plugin?该插件提供从Maven内运行Ant任务的功能。您甚至可以将您的Ant脚本嵌入POM!这个插件不是提供污染POM的手段意图,因此它鼓励所有Ant任务...
首页上一页...109110111112113...下一页尾页