Don't wanna be here? Send us removal request.
Text
Flowable 6.7.2 editor
download version 6.7.2 https://github.com/flowable/flowable-engine/releases/tag/flowable-6.7.2
unzip and go to wars folder and confirm flowable-ui.war is present
run in cmd prompt > java -jar flowable-ui.war
for specific port > java -Dserver.port=8888 -jar flowable-ui.war
check startup logs success and port (usually 8080 unless specific)
access ui in browser http://localhost:8080/flowable-ui
user/pwd is admin/test
reference https://medium.com/@prawin609/getting-started-with-flowable-installation-and-ui-access-a225e032f776
0 notes
Text
PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
use:
mvn -Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true clean install
0 notes
Text
rabbitmq quickstart
download rabbitmq zip
download compatible erlang.exe
install erlang
in system variables add ERLANG_HOME and point to erlang installation directory (ex. C:\Program Files\Erlang OTP)
in system variables Path, add %ERLANG_HOME%\bin
unzip rabbitmq zip
go to sbin folder and open cmd prompt
in cmd prompt run > rabbitmq-plugins.bat enable rabbitmq_management
9. in (another) cmd prompt, start mq by running > rabbitmq-server.bat
10. after startup, open browser and access http://localhost:15672/
11. login as guest/guest
0 notes
Text
JAX-RS ExceptionMapper
maps rest exceptions to responses.
0 notes
Text
SQLException ORA-01502 partition of such index is in unusable state
reference: https://dba.stackexchange.com/questions/3754/ora-01502-index-or-partition-of-such-index-is-in-usable-state-problem
for DBA:
SELECT 'ALTER INDEX '||OWNER||'.'||INDEX_NAME||' REBUILD;' FROM DBA_INDEXES WHERE STATUS = 'UNUSABLE';
for non-DBA:
SELECT 'ALTER INDEX ' || INDEX_NAME || ' REBUILD;' FROM USER_INDEXES WHERE STATUS = 'UNUSABLE';
0 notes
Text
could not read maven project
in eclipse, on project > right-click > maven > update project > force update
0 notes
Text
waterproofing
prefer "polyurethane acrylic" for better uv and thermal resistance
0 notes
Text
view tapo cam in vlc
create cam's user/pwd in tapo app device's settings
get cam ip address in the device's settings
in vlc, open network stream using url rtsp://ipAdd/stream1 for HQ feed; rtsp://ipAdd/stream2 for LQ feed. use user/pass from #1
reference:
How to view Tapo camera on PC/NAS/NVR through RTSP/Onvif Protocol | Tapo
TP-Link - Tapo - How to view Tapo camera on PC through RTSP stream? (ic.plus)
0 notes
Text
URL percent encoding
If you want to use password with special character, like an exclamation mark, you need to use percent encoding which is often called URL encoding.
0 notes
Text
server startup log
look for "started on port"
0 notes
Text
spring boot tutorial recommendations
0 notes
Text
mysql workbench logs location
C:\Users\userfolder\AppData\Roaming\MySQL\Workbench\log
0 notes
Text
Liberty clear cache
Run:
./server start --clean
see https://jazz.net/forum/questions/213865/clm-on-was-liberty-how-to-clear-the-cache
0 notes
Text
[ERROR] No plugin found for prefix 'versions' in the current project and in the plugin groups
error running => mvn versions:set
workaround ==> use full artifact coordinates based on pom.xml:
example: mvn org.codehaus.mojo:versions-maven-plugin:2.4:set
0 notes
Text
Liberty server port config
in liberty\wlp\usr\servers\defaultServer\server.xml
0 notes