Centos 7上部署RAP
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos 7上部署RAP相关的知识,希望对你有一定的参考价值。
1、Rap说明
RAP是一个GUI的WEB接口管理工具。在RAP中,您可定义接口的URL、请求&响应细节格式等等。通过分析这些数据,RAP提供MOCK服务、测试服务等自动化工具。RAP同时提供大量企业级功能,帮助企业和团队高效的工作。
在前后端分离的开发模式下,我们通常需要定义一份接口文档来规范接口的具体信息。如一个请求的地址、有几个参数、参数名称及类型含义等等。RAP 首先方便团队录入、查看和管理这些接口文档,并通过分析结构化的文档数据,重复利用并生成自测数据、提供自测控制台等等... 大幅度提升开发效率。
官网:https://github.com/thx/RAP
在线版:http://rap.taobao.org/
官网 Wiki:https://github.com/thx/RAP/wiki/home_cn
官网部署手册:https://github.com/thx/RAP/wiki/deploy_manual_cn
用户手册:https://github.com/thx/RAP/wiki/user_manual_cn
2、环境说明
系统:Centos 7及以上
rap版本:RAP-0.14.0-SNAPSHOT.war
rap安装目录:/usr/local/
tomcat目录:/usr/local/apache-tomcat-8.0.24
nginx目录:/usr/local/nginx
redis目录:/usr/local/redis-3.2.3
jdk目录:/usr/jdk1.8.0_131/
3、安装基础软件
说明:redis、nginx、tomcat自己用源码包安装比较合适,我这里都是源包安装好的redis、nginx、tomcat环境,当然你也可以yum安装,yum安装过程如下:
#rpm -ivh mysql-community-release-el7-5.noarch.rpm #yum install -y mysql-server nginx tomcat unzip redis |
4、安装rap
4.1、下载、解压rap
下载rap #wget http://rap.taobao.org/release/RAP-0.14.0-SNAPSHOT.war 解压至 /usr/local/apache-tomcat-8.0.24/webapps/ROOT 目录下 #unzip -x RAP-0.14.0-SNAPSHOT.war -d /usr/local/apache-tomcat-8.0.24/webapps/ROOT |
4.2、配置数据库
创建数据库及用户:
#create database rap_db default charset utf8 COLLATE utf8_general_ci; #grant all on rap_db.* to 'rap'@'localhost' IDENTIFIED BY 'password'; #flush privileges; |
初始化数据库,输入刚才创建的用户和密码:
#mysql -u rap -p rap_db < /usr/local/apache-tomcat-8.0.24/webapps/ROOT/WEB-INF/classes/databaseinitialize.sql |
配置rap应用中的数据库连接
#vim /usr/local/apache-tomcat-8.0.24/webapps/ROOT/WEB-INF/classes/config.properties ###修改为刚才创建的数据库用户名及密码 jdbc.username=rap jdbc.password=password redis.host=172.18.18.59 redis.port=6379 |
重新tomcat服务
#/usr/local/apache-tomcat-8.0.24/bin/shutdown.sh #/usr/local/apache-tomcat-8.0.24/bin/startup.sh |
4.3、配置nginx
#cd /usr/local/nginx/conf #vim nginx.conf server { listen 80; server_name xxxxx; #本机IP或者域名 access_log /var/log/nginx/rap_access.log; charset utf-8; autoindex off; location /{ proxy_pass http://localhost:8080; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } |
重启nginx服务。
4.4 启动redis服务
#/usr/local/redis-3.2.3/src/redis-server /usr/local/redis-3.2.3/redis.conf |
5、访问RAP
访问 http://IP或域名 ,如果你没有配置nginx,可直接带tomcat的端口访问,比如 http://ip:8080,效果如下:
至此,RAP部署完成。
以上是关于Centos 7上部署RAP的主要内容,如果未能解决你的问题,请参考以下文章
Centos 7 上部署Cisco AnyConnect ×××服务器