码迷,mamicode.com
首页 >  
搜索关键字:pos    ( 22785个结果
安装配置git服务
创建git用户和组 groupadd -g 11111 git useradd -md /home/git -g 11111 -u 11111 git 安装依赖包 yum install curl-devel expat-devel gettext-devel openssl-devel zlib- ...
分类:其他好文   时间:2019-11-19 01:06:53    阅读次数:68
ubuntu+tomcat+jenkins+git+maven
1、下载tomcat和jdk wget http://mirrors.tuna.tsinghua.edu.cn/apache/tomcat/tomcat-9/v9.0.27/bin/apache-tomcat-9.0.27.tar.gz wget --http-user=2696671285@qq. ...
分类:系统相关   时间:2019-11-19 01:05:09    阅读次数:81
理解Spark运行模式(二)(Yarn Cluster)
上一篇说到Spark的yarn client运行模式,它与yarn cluster模式的主要区别就是前者Driver是运行在客户端,后者Driver是运行在yarn集群中。yarn client模式一般用在交互式场景中,比如spark shell, spark sql等程序,但是该模式下运行在客户端 ...
分类:其他好文   时间:2019-11-18 22:14:29    阅读次数:101
Spring Bean 基于注解的装配
基于注解的装配 在Spring框架中,尽管使用XML配置文件可以很简单地装配Bean,但如果应用中有大量的Bean需要装配,会导致XML配置文件过于庞大,不方便以后的升级与维护,因此更多的时候推荐开发者使用注解(annotation)的方式去装配Bean。 在Spring框架中定义了一系列的注解,下 ...
分类:编程语言   时间:2019-11-18 20:40:41    阅读次数:230
SpringBoot 系列 - 自己写starter
原文地址: 前言: Spring Boot由众多Starter组成,随着版本的推移Starter家族成员也与日俱增。在传统Maven项目中通常将一些层、组件拆分为模块来管理, 以便相互依赖复用,在Spring Boot项目中我们则可以创建自定义Spring Boot Starter来达成该目的。 可 ...
分类:编程语言   时间:2019-11-18 13:11:59    阅读次数:94
php7的新特性
php7新特性 太空船操作符 <=> echo 1<=>1; //0 echo 1<=>2: //-1 echo 2<=>1;//1 类型声明: declare (strict_types=1) // strict_types=1表示开启严格模式 function sum(int...$ints): ...
分类:Web程序   时间:2019-11-18 13:09:30    阅读次数:102
MySQL同步故障:" Slave_SQL_Running:No" 两种解决办法
进入slave服务器,运行: mysql> show slave status\G ....... Relay_Log_File: localhost-relay-bin.000535 Relay_Log_Pos: 21795072 Relay_Master_Log_File: localhost- ...
分类:数据库   时间:2019-11-18 13:04:29    阅读次数:85
WordPress 如何调用其他网站的最新文章
最近又在折腾自己的玩博客导航,遇到了一个问题,想在主题设置的某个位置专门来显示作者网站里某个分类下的文章;或者我们想在一个网站里调用另外一个 wordpress 网站内的文章,在网上找了很多方法,好多都是两个站点都是 WordPress 程序的调用教程,折腾了好多方法,找到一个可用的插件,通过 Ec ...
分类:Web程序   时间:2019-11-18 09:52:13    阅读次数:143
LeetCode_389. Find the Difference
389. Find the Difference Easy Easy Easy Given two strings s and t which consist of only lowercase letters. String t is generated by random shuffling s ...
分类:其他好文   时间:2019-11-18 09:22:52    阅读次数:65
二、logstash原理和使用
一、概述1.1logstash简介?logstash是一个数据分析软件,主要目的是分析log日志。整一套软件可以当作一个MVC模型,logstash是controller层,Elasticsearch是一个model层,kibana是view层。首先将数据传给logstash,它将数据进行过滤和格式化(转成JSON格式),然后传给Elasticsearch进行存储、建搜索的索引,kibana提供前
分类:其他好文   时间:2019-11-18 09:18:47    阅读次数:143
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!