会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
vae_test_yu
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
9
10
下一页
2021年11月24日
centos创建挂载虚拟内存
摘要: 建立一个/home/swap的分区文件,大小为2G,可以自行倍增。dd if=/dev/zero of=/home/swap bs=1024 count=2048000制作为swap格式文件mkswap /home/swap再用swapon命令把这个文件分区挂载swap分区swapon /home/
阅读全文
posted @ 2021-11-24 16:47 test_yu
阅读(91)
评论(0)
推荐(0)
2021年7月14日
docker运行httpd
摘要: docker run -d -p 80:80 httpd # 80:80 是把容器的80端口映射到服务器的80端口上
阅读全文
posted @ 2021-07-14 17:09 test_yu
阅读(286)
评论(0)
推荐(0)
2021年7月2日
docker安装Fastdfs
摘要: 1.查找Docker Hub上的fastdfs镜像 docker search fastdfs 2.拉取镜像 docker pull delron/fastdfs #拉取最新版本 3.查看镜像 docker images 4.使用docker镜像构建tracker容器(跟踪服务器,起到调度的作用):
阅读全文
posted @ 2021-07-02 12:03 test_yu
阅读(1256)
评论(1)
推荐(0)
2021年7月1日
docker安装redis
摘要: 下载 redis 镜像 docker pull redis 创建配置文件 mkdir -p /mydata/redis/conf touch /mydata/redis/conf/redis.conf 启动容器 docker run -p 16379:6379 --name redis -v /my
阅读全文
posted @ 2021-07-01 10:25 test_yu
阅读(67)
评论(0)
推荐(0)
2021年6月24日
centos7安装rabbitmq
摘要: 因为RabbitMQ是由Erlang语言开发的所以需要安装Erlang的开发环境,再安装RabbitMQ 1. 在rabbitmq 官网查看依赖关系 https://www.rabbitmq.com/which-erlang.html 2. 下载对应的安装包,下载地址如下: https://gith
阅读全文
posted @ 2021-06-24 18:02 test_yu
阅读(68)
评论(0)
推荐(0)
2021年6月22日
docker安装redmine管理系统
摘要: 一、安装docker 首先查看自己的版本,我的是centos uname -r 版本为 移除旧版本docker yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ doc
阅读全文
posted @ 2021-06-22 11:21 test_yu
阅读(1709)
评论(1)
推荐(0)
2021年6月18日
centos7安装mysql5.7.11
摘要: 安装必要的组件 yum install –y autoconf automake imake libxml2-devel expat-devel cmake gcc gcc-c++ libaio libaio-devel bzr bison libtool ncurses5-devel 碰到这种,输
阅读全文
posted @ 2021-06-18 15:13 test_yu
阅读(146)
评论(0)
推荐(0)
2021年6月17日
centos安装yapi分支crazy-yapi
摘要: 环境要求 nodejs(7.6+) # 见:https://www.cnblogs.com/tester-yu/p/14849378.html mongodb(2.6+)# 见:https://www.cnblogs.com/tester-yu/p/14892110.html git #安装git命
阅读全文
posted @ 2021-06-17 14:13 test_yu
阅读(206)
评论(0)
推荐(0)
cnetos环境变量配置错误解决方法
摘要: export PATH=/bin:/usr/bin:$PATH
阅读全文
posted @ 2021-06-17 10:21 test_yu
阅读(51)
评论(0)
推荐(0)
centos7安装MongoDB3.4
摘要: 简介MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是非关系数据库当中功能最丰富,最像关系数据库的。他支持的数据结构非常松散,是类似json的bson格式,因此可以存储比较复杂的数据类型。Mongo最大的特点是他支持的查询语言非常强大,其语法有点类似于面向对象的查询语言,几乎可以实现类
阅读全文
posted @ 2021-06-17 09:37 test_yu
阅读(98)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
10
下一页
公告