
后端
文章平均质量分 55
咖喱姬姬
这个作者很懒,什么都没留下…
展开
-
CentOS7安装单机版kafka
1、安装JDKCentOS 7 自带了openJDK 1.82、安装Zookeeper下载地址http://mirrors.hust.edu.cn/apache/zookeeper/解压文件cd /opt/zk/tar -zxvf zookeeper-3.4.12.tar.gzzookeeper配置文件修改cd /opt/zk/zookeeper-3.4.12/conf/cp zoo_sample.cfg zoo.cfgvim zoo.cfg#将clientPo原创 2021-04-29 17:08:07 · 354 阅读 · 1 评论 -
win10 出现gyp ERR! build error
问题描述:nodejs项目使用npm install需要node-gyp rebuild,一直出现:gyp ERR! stack Error: C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin\MSBuild.exe failed with exit code:1解决过程:卸载nodejs v12.18.3,安装nodejs v10.22.0安装Visual Studio 20原创 2020-08-24 16:52:12 · 7307 阅读 · 1 评论 -
CentOS7安装Redis+开机自启动+开放远程访问
一、安装选择所需redis版本,复制下载链接。创建目录存放安装包mkdir /softwarecd /software下载安装包wget http://download.redis.io/releases/redis-5.0.3.tar.gz解压,进入解压目录,编译tar -zxvf redis-5.0.3.tar.gzcd redis-5.0.3/make等待编译完成后,安装到指定目录make install PREFIX=/usr/local/redi原创 2020-08-05 19:18:35 · 415 阅读 · 0 评论 -
使用IDEA打包Spring Boot项目并部署到CentOS 7服务器
一、打包项目为jar包确保创建项目时选择的打包方式为jar,且pom.xml文件中导入了打包的依赖<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugin原创 2020-07-26 17:03:41 · 1303 阅读 · 1 评论