英杰926

导航

2020年4月12日 #

Consul

摘要: Consul 下载 https://www.consul.io/downloads.html 安装 cd /usr/local rz #consul_1.4.0_linux_amd64.zip unzip -n consul_1.4.0_linux_amd64.zip vim /etc/enviro 阅读全文

posted @ 2020-04-12 12:43 英杰926 阅读(133) 评论(0) 推荐(0) 编辑

redis

摘要: redis 1、 从http://redis.io/ 下载redis-3.2.4.tar.gz 2、 上传到linux后移动到/opt/redis目录下 3、 解压 sudo tar -zxvf redis-3.2.4.tar.gz 4、 进入解压后的文件夹进行编译 make 5、 安装 make 阅读全文

posted @ 2020-04-12 12:42 英杰926 阅读(103) 评论(0) 推荐(0) 编辑

solr

摘要: solr 依赖 1、 jdk 下载 http://apache.fayea.com/lucene/solr/ solr-7.7.0.tgz 安装 https://blog.csdn.net/lovehouye/article/details/79168421 cd /usr/local rz tar 阅读全文

posted @ 2020-04-12 12:41 英杰926 阅读(152) 评论(0) 推荐(0) 编辑

ElasticSearch

摘要: ElasticSearch elasticsearch-6.6.1 下载 https://www.elastic.co/downloads/elasticsearch elasticsearch-6.6.1.tar.gz 安装 cd /usr/local rz tar -xvf elasticsea 阅读全文

posted @ 2020-04-12 12:40 英杰926 阅读(120) 评论(0) 推荐(0) 编辑

kafka

摘要: kafka 1、 安装jdk 2、 安装zookeeper 3、 安装并运行Kafka 下载: http://kafka.apache.org/downloads.html kafka_2.11-2.0.0.tgz 安装: 1、 cd /usr/local/ 2、 rz 3、 tar -zxvf k 阅读全文

posted @ 2020-04-12 12:39 英杰926 阅读(152) 评论(0) 推荐(0) 编辑

activemq

摘要: activemq 依赖jkd 下载: http://activemq.apache.org/ apache-activemq-5.15.8-bin.tar.gz 安装 cd /usr/local/ rz tar -zxvf apache-activemq-5.15.8-bin.tar.gz rm a 阅读全文

posted @ 2020-04-12 12:38 英杰926 阅读(101) 评论(0) 推荐(0) 编辑

RabbitMq

摘要: RabbitMq 可以参照RabbitMq官网的安装教程(Installing on Debian and Ubuntu),来进行安装。 这里我们使用apt-get来安装,就简单的几条命令: 1.由于rabbitMq需要erlang语言的支持,在安装rabbitMq之前需要安装erlang,执行命令 阅读全文

posted @ 2020-04-12 12:37 英杰926 阅读(127) 评论(0) 推荐(0) 编辑

nginx

摘要: nginx 前奏 1、gcc g++ 开始前,请确认gcc g++开发类库是否装好,默认已经安装。 ububtu平台编译环境可以使用以下指令 apt-get install build-essential apt-get install libtoo l centos平台编译环境使用如下指令 安装m 阅读全文

posted @ 2020-04-12 12:36 英杰926 阅读(89) 评论(0) 推荐(0) 编辑

JBoss

摘要: JBoss 安装 https://www.jboss.org/ jboss-eap-6.4.0.zip 1、上传解压重命名 cd /usr/local/ rz unzip jboss-as-distribution-6.0.0.Final.zip mv jboss-6.0.0.Final/ jbos 阅读全文

posted @ 2020-04-12 12:35 英杰926 阅读(146) 评论(0) 推荐(0) 编辑

weblogic

摘要: weblogic 简介 WebLogic是美国Oracle公司出品的一个application server,确切的说是一个基于JAVAEE架构的中间件,WebLogic是用于开发、集成、部署和管理大型分布式Web应用、网络应用和数据库应用的Java应用服务器。将Java的动态功能和Java Ent 阅读全文

posted @ 2020-04-12 12:34 英杰926 阅读(125) 评论(0) 推荐(0) 编辑

zookeeper

摘要: zookeeper 下载: http://zookeeper.apache.org/releases.html zookeeper-3.4.9 安装(依赖jdk) cd /usr/local rz tar -zxvf zookeeper-3.4.9.tar.gz rm zookeeper-3.4.9 阅读全文

posted @ 2020-04-12 12:33 英杰926 阅读(100) 评论(0) 推荐(0) 编辑

jdk

摘要: jdk jdk下载:www.oracle.com——Donwloads——jdk——Java (JDK) for Developers 上传到:/srv/ftp cd /srv/ftp tar xzvf jdk-8u181-linux-x64.tar.gz -C /usr/local 解压缩jdk文 阅读全文

posted @ 2020-04-12 12:32 英杰926 阅读(110) 评论(0) 推荐(0) 编辑

nginx

摘要: nginx #官网 nginx.org #选择 【nginx-1.17.5】 #点击 【stable and mainline】 #点击 【RHEL/CentOS】 sudo yum install yum-utils vim /etc/yum.repos.d/nginx.repo [nginx-s 阅读全文

posted @ 2020-04-12 12:30 英杰926 阅读(100) 评论(0) 推荐(0) 编辑

docker

摘要: docker 官址: docs.docker.com/install/linux/docker-ce/centos 安装 yum install -y yum-utils \ device-mapper-persistent-data \ lvm2 #安装 Docker 官方源 sudo yum-c 阅读全文

posted @ 2020-04-12 12:29 英杰926 阅读(113) 评论(0) 推荐(0) 编辑

安装node

摘要: 安装node sudo yum install gcc gcc-c++ cd /usr/local/ wget https://npm.taobao.org/mirrors/node/v10.13.0/node-v10.13.0.tar.gz tar xvf node-v10.13.0.tar.gz 阅读全文

posted @ 2020-04-12 12:28 英杰926 阅读(108) 评论(0) 推荐(0) 编辑

ssh免密登录

摘要: ssh免密登录 rm -rf ~/.ssh ssh-keygen -t rsa #生成ssh key cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys #将公钥拷贝到授权文件中 ssh root@centos1 #登录 exit #退出登录 同步其他机器 阅读全文

posted @ 2020-04-12 12:27 英杰926 阅读(68) 评论(0) 推荐(0) 编辑

rar

摘要: rar cd /usr/local wget http://www.rarlab.com/rar/rarlinux-x64-5.3.0.tar.gz tar -zxvf rarlinux-x64-5.3.0.tar.gz #对应64位下载的 rm -f rarlinux-x64-5.3.0.tar. 阅读全文

posted @ 2020-04-12 12:26 英杰926 阅读(83) 评论(0) 推荐(0) 编辑

RabbitMQ

摘要: RabbitMQ 安装 安装erlang环境 yum install http://www.rabbitmq.com/releases/erlang/erlang-19.0.4-1.el7.centos.x86_64.rpm 安装rabbitmq yum install http://www.rab 阅读全文

posted @ 2020-04-12 12:25 英杰926 阅读(111) 评论(0) 推荐(0) 编辑

Consul

摘要: Consul 下载 https://www.consul.io/downloads.html 安装 cd /usr/local rz #consul_1.5.2_linux_amd64.zip unzip -n consul_1.5.2_linux_amd64.zip vim /etc/enviro 阅读全文

posted @ 2020-04-12 12:24 英杰926 阅读(143) 评论(0) 推荐(0) 编辑

redis

摘要: redis 下载 cd /usr/local wget http://download.redis.io/releases/redis-4.0.6.tar.gz 安装 tar xzvf redis-4.0.6.tar.gz rm -f redis-4.0.6.tar.gz mv redis-4.0. 阅读全文

posted @ 2020-04-12 12:23 英杰926 阅读(104) 评论(0) 推荐(0) 编辑