会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
The palest ink is better than the best memory
博客园
首页
新随笔
联系
订阅
管理
2021年6月1日
Nginx配置文件结构
摘要: 转载: 如果你下载好啦,你的安装文件,不妨打开conf文件夹的nginx.conf文件,Nginx服务器的基础配置,默认的配置也存放在此。 在 nginx.conf 的注释符号为: # 默认的 nginx 配置文件 nginx.conf 内容如下: #user nobody; worker_proc
阅读全文
posted @ 2021-06-01 09:53 Merrial
阅读(122)
评论(0)
推荐(0)
2021年5月31日
Centos 7安装pm2
摘要: 1、首先需要安装node,node安装教程前一篇已经说了,是安装pm2 [root@localhost ~]# npm install -g pm2 2、pm2 命令参考 2.1 启动进程/应用 pm2 start bin/www 或 pm2 start app.js 2.2 重命名进程/应用 pm
阅读全文
posted @ 2021-05-31 16:08 Merrial
阅读(1232)
评论(0)
推荐(0)
CentOs7安装node
摘要: 1、到node官网下载自己需要的压缩包(https://nodejs.org/zh-cn/download/) 下载后按照如下内容安装: [root@localhost ~]# tar -zxvf /usr/local/software/node-v14.7.0-linux-x64.tar.gz -
阅读全文
posted @ 2021-05-31 16:00 Merrial
阅读(213)
评论(0)
推荐(0)
2021年5月28日
redmine安装
摘要: 1、安装基础的包 [root@localhost ~]# yum -y install patch make gcc gcc-c++ gcc-g77 flex* bison file [root@localhost ~]# yum -y install libtool libtool-libs au
阅读全文
posted @ 2021-05-28 09:18 Merrial
阅读(100)
评论(0)
推荐(0)
2021年5月26日
Linux CentOs7系统安装-redis安装:
摘要: Centos7安装Redis 一、Redis在Centos7上面安装步骤: 1、下载redis安装包及安装相关依赖包 1.1、下载最新稳定版的redis: wget https://github.com/antirez/redis/archive/5.0.2.tar.gz 1.2、安装依赖包: yu
阅读全文
posted @ 2021-05-26 21:44 Merrial
阅读(86)
评论(0)
推荐(0)
2020年4月25日
Linux CentOs7安装jenkins
摘要: Jenkins是持续集成必不可少的工具,但是我们日常只是在用,不知道如何配置和安装,下面就和大家来安装一次: 一、准备工作: 1.1、去官网去下载适合自己的版本:http://mirrors.jenkins-ci.org/redhat/ 1.2、将下载好的文件拷贝到linux相应的位置下,我拷贝到/
阅读全文
posted @ 2020-04-25 19:19 Merrial
阅读(352)
评论(0)
推荐(0)
linux CentOs7系统安装-ActiveMq
摘要: 一、介绍 MQ是消息中间件,是一种在分布式系统中应用程序借以传递消息的媒介,常用的有ActiveMQ,RabbitMQ,kafka。ActiveMQ是Apache下的开源项目,完全支持JMS1.1和J2EE1.4规范的JMS Provider实现。 特点: 1、支持多种语言编写客户端 2、对spri
阅读全文
posted @ 2020-04-25 18:42 Merrial
阅读(360)
评论(0)
推荐(0)
Linux之CentOs7.4系统安装-JDK安装
摘要: linux上安装jdk分为两种:第一种是使用yum的安装:第二种是是手动安装,由于yum自动安装的灵活性不太好,我们选择了手动安装: 一、yum安装: yum -y list java* 执行成功后看到如下界面: 2、选择自己需要的jdk版本来安装,比如这里选择安装1.8,执行以下命令: yum i
阅读全文
posted @ 2020-04-25 18:10 Merrial
阅读(1261)
评论(0)
推荐(0)
2019年11月14日
传统的JDBC的开发
摘要: Java Database Connection 传统的JDBC连接技术 public class JDBCConnectionTest { public static void main(String[] args) { //Connection对象; Connection conn = null
阅读全文
posted @ 2019-11-14 21:21 Merrial
阅读(179)
评论(0)
推荐(0)
2019年10月14日
Spring boot使用MyBatis-plus遇到的坑
摘要: 初次学习Spring boot安装MyBatis-plus遇到的问题: 1、Invalid bound statement (not found) 网上有很多大佬遇到同样的问题并且给出相应的解决方法,我在这总结一下,以备以后遇到相同的问题能够快速解决: 1)接口中方法名(delete)与xml文件中
阅读全文
posted @ 2019-10-14 21:50 Merrial
阅读(19771)
评论(0)
推荐(0)
公告