flowable-ui部署(6.80)

不使用tomcat直接看最后边

前置条件:Apache Tomcat/9.0.78版本及以下

https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.78/bin/apache-tomcat-9.0.78-windows-x64.zip

一、下载资源

https://github.com/flowable/flowable-engine/releases/download/flowable-6.8.0/flowable-6.8.0.zip

二、解压部署

flowable-ui部署(6.80)_第1张图片

修改tomcat配置文件,根据自己的安装位置

D:\ProgramFiles\apache-tomcat-9.0.78\conf\server.xml

 配置flowable应用

      

flowable-ui部署(6.80)_第2张图片

 如果8080端口被占用,可以修改tomcat端口

flowable-ui部署(6.80)_第3张图片

三、启动tomcat

flowable-ui部署(6.80)_第4张图片 四、登录

我修改了tomcat的端口,使用7080

http://localhost:7080/

flowable-ui部署(6.80)_第5张图片

http://localhost:7080/flowable/idm/#/login

 账号:admin 密码:test

flowable-ui部署(6.80)_第6张图片

 flowable-ui部署(6.80)_第7张图片

五、不使用tomcat

java -jar -Dserver.port=8088 flowable-ui.war

flowable-ui部署(6.80)_第8张图片

http://localhost:8088/flowable-ui/#/

  账号:admin 密码:test

flowable-ui部署(6.80)_第9张图片

写个脚本后台运行

@echo off

REM 该脚本用于后台运行 Java 程序 flowable-ui
REM 使用 start 命令以后台最小化方式运行 javaw 命令

start "flowable-ui" /MIN javaw -jar -Dserver.port=8088 flowable-ui.war

exit

你可能感兴趣的:(ui)