Mysql部署文档
安装mysql服务mysql数据库安装包下载链接:链接: https://pan.baidu.com/s/1OqSnqRXJ951V6Gn7P-IFQQ 提取码: wini参考:https://www.cnblogs.com/javabg/p/9951852.html1)上传二进制包到/home 解压
1tar -zxvf mysql-5.7.23-linux-glibc2.12-x86_64.tar.gz
2)更改解压缩后的文件夹名称
1mv mysql-5.7.23-linux-glibc2.12-x86_64/ /home/mysql
3)创建存放数据库数据的文件夹/home/mysql/data
1mkdir /home/mysql/data
4)创建mysql用户组和mysql用户
12groupadd mysqluseradd -r -g mysql mysql
5)mysql目录授权给mysql组和mysql用户
123cd /homechown -R mysql:mysql mysqlchmod -R 750 mysql
6)修 ...
Harbor部署文档
安装dockera)docker17.12.0-ce下载链接: https://pan.baidu.com/s/1oxAwdjcLxt91Fh2YdZB5dQ 提取码: 34d1包含下述相关依赖包rpm包:b)启动docker所需的docker-compose下载链接:https://pan.baidu.com/s/1WBMMLn2g15daXE0JDr0wMg 提取码: 6rz31)进入a)所下的rpm包文件夹中,执行下述命令
1rpm -ivh *.rpm --nodeps --force
–nodeps就是安装时不检查依赖关系,比如你这个rpm需要A,但是你没装A,这样你的包就装不上,用了–nodeps你就能装上了。–force就是强制安装,比如你装过这个rpm的版本1,如果你想装这个rpm的版本2,就需要用–force强制安装2)修改docker-compose权限,并移动到/usr/bin目录下
12chmod +x docker-composemv docker-compose /usr/bin
3)在/etc目录下创建docker文件夹,并在 ...
Gitlab安装文档
以镜像的方式部署gitlab,并外挂postgresql、redis数据库。环境为centos7(192.168.117.129),在192.168.117.129安装postgresql、redis数据库。(一)拉取镜像
1docker pull twang2218/gitlab-ce-zh:10.6.4
(二)启动在启动之前需要在postgresql中新建一个数据库gitlab-test1数据库1)以docker run 方式启动gitlab镜像,挂载的数据库,在容器的配置文件中添加:
123456789docker run -d \ --hostname '192.168.117.129' \ --publish 443:443 --publish 8080:80 --publish 2222:22 \ --name dockercompose_gitlab_1 \ --restart always \ --volume '/gitlab/config:/etc/gitlab' \ --volume '/gitlab/logs:/ ...
Postgresql安装文档
PostgreSQL安装包官网下载地址:https://www.postgresql.org/ftp/source/v10.1/
(一) 安装
1)上传、解压
12将postgresql-10.1.tar.gz上传到/home下运行解压命令 tar -zxvf postgresql-10.1.tar.gz
2)检查当前系统环境能否安装PG
12 cd /home/postgresql-10.1/./configure --prefix=/usr/local/pgsql/
若出现下述错误
1234configure: error: readline library not foundIf you have readline already installed, see config.log for details on thefailure. It is possible the compiler isn't looking in the proper directory.Use --without-readline to disable readline support. ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post123456789101112部署流程:hexo cleanhexo ghexo d调试流程:hexo cleanhexo shttp://localhost:4000创建新的博客:hexo new "博客名称" 在\hexo\source\_posts目录中生成创建新的页面:hexo new page "页面名称" 在\hexo\source目录中生成
1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo ser ...
在线考试系统部署文档
主要介绍如何在本地运行项目,包括下载、导入、修改配置、运行项目
环境准备开发环境:
jdk:1.8
MySQL:5.7+
redis
rabbitMq
node.js
consul
fastDfs(推荐基于docker安装,安装步骤网上很多)
开发工具:IntelliJ IDEA、WebStorm
项目下载
git clone下载spring-microservice-exam、spring-microservice-exam-ui、spring-microservice-exam-web:123`git clone https://gitee.com/wells2333/spring-microservice-exam.git``git clone https://gitee.com/wells2333/spring-microservice-exam-ui.git``git clone https://gitee.com/wells2333/spring-microservice-exam-web.git`
修改配置
修改spring-microservice-exam的co ...