rabatfirstsight
rabatfirstsight
LockdownThoughts
66 posts
Don't wanna be here? Send us removal request.
rabatfirstsight · 11 days ago
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
rabatfirstsight · 25 days ago
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
Tumblr media
9. in (another) cmd prompt, start mq by running > rabbitmq-server.bat
Tumblr media
10. after startup, open browser and access http://localhost:15672/
11. login as guest/guest
0 notes
rabatfirstsight · 2 months ago
Text
JAX-RS ExceptionMapper
maps rest exceptions to responses.
0 notes
rabatfirstsight · 3 months ago
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
rabatfirstsight · 6 months ago
Text
could not read maven project
in eclipse, on project > right-click > maven > update project > force update
0 notes
rabatfirstsight · 6 months ago
Text
manual set cookie in browser
Tumblr media
0 notes
rabatfirstsight · 7 months ago
Text
waterproofing
prefer "polyurethane acrylic" for better uv and thermal resistance
0 notes
rabatfirstsight · 8 months ago
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
rabatfirstsight · 9 months ago
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.
Tumblr media
0 notes
rabatfirstsight · 1 year ago
Text
server startup log
look for "started on port"
0 notes
rabatfirstsight · 1 year ago
Text
spring boot tutorial recommendations
0 notes
rabatfirstsight · 1 year ago
Text
add ldpa user
Tumblr media Tumblr media
0 notes
rabatfirstsight · 1 year ago
Text
mysql workbench logs location
C:\Users\userfolder\AppData\Roaming\MySQL\Workbench\log
0 notes
rabatfirstsight · 1 year ago
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
rabatfirstsight · 1 year ago
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
rabatfirstsight · 1 year ago
Text
Liberty server port config
in liberty\wlp\usr\servers\defaultServer\server.xml
Tumblr media
0 notes
rabatfirstsight · 1 year ago
Text
Create DB ER Diagram using MySQL Workbench
reference https://medium.com/@tushar0618/how-to-create-er-diagram-of-a-database-in-mysql-workbench-209fbf63fd03
ensure DB is present
click Database > Reverse Engineer
select stored connection and click Next
on Connect to DBMS completion, click Next
on Select Schemas page, select target schema and then Next
on Retrieve Objects completion, click Next
on Select Objects, keep target tables for the ER diagram ON THE LEFT panel. Tables moved to the right panel will be excluded.
keep "Import MySQL Table Objects" checked
keep "Place imported objects on a diagram" checked
after selecting tables, click Execute
on Reverse Engineering Progress completion, click Next
to create image, File > Export As Png
0 notes