Archives : November-2018

Home » 2018 » November

Java 1.8.0_131 disabled MD5 algorithm. As a result, any server that has keystore based on  this old algorithm will result in this error sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target More info: https://www.oracle.com/technetwork/java/javase/8u131-relnotes-3565278.html Current Payment Gateway keystore >keytool -list -keystore keystore.bin -v Enter keystore password: Keystore type: ..

Read more

The “rid” query parameter in the link determines the region. E.g. for Ipswich region the region id is 5, so the link becomes https://register.billysbuddies.com.au/secure/registration/list?pa=billysbuddies&back=https://www.billysbuddies.com.au&rid=5 LITTLE MA : https://classhub.com.au/secure/registration/list?pa=littlema&back=https://www.littlema.com.au&rid=0 use vid=0 to display by venue https://classhub.com.au/secure/registration/list?pa=littlema&back=https://www.littlema.com.au..

Read more

To enable SSH into an instance in VPC, need to check the Route Table associated with the VPC. Add a route Destination: 0.0.0.0/0 Target: igw-id where id is the id of the Internet Gateway of the same VPC.   More info check out https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Scen..

Read more

Checkout source codes: >git clone https://bitbucket.org/sl_main/appserver8.git AppServer8 is a Maven based Sprint Boot project. AppServer8 runs on port 6888. Config File Copy “appserver.test.txt.template” and save-as “appserver.test.txt”. Local Database Setup: Install and run MySQL (localhost, port 3306) Create a database called “sportlogic” Create a database user called “appserver” with password “appServerPass” CREATE USER ‘appserver’@’localhost’ IDENTIFIED BY ..

Read more

This article describe all the custom configurations, how, where and what they do: Customer Properties Defined by Desktop GUI BOOKING_TYPE_PROPERTIES = “booking.type.properties” INVOICE_PROPERTIES = “invoice.properties” LESSON_CREDIT_STATEMENT_PROPERTIES = “lesson.credit.statement.properties” MAIL_PROPERTIES = “mail.properties” SMSGLOBAL_PROPERTIES = “smsglobal.properties” SMS_CLICKATELL_PROPERTIES = “sms.clickatell.properties” BURST_SMS_PROPERTIES = “sms.burstsms.properties” SQUAD_PROPERTIES = “squad.properties” BACKUP_PROPERTIES = “backup.properties” RANGE_SERVANT_PROPERTIES = “range.servant.properties” DOCKET_PRINTER_PROPERTIES = “docket.printer.properties” INVOICE_LOGO = “invoice.logo” ..

Read more

https://www.cyberciti.biz/faq/how-do-i-block-an-ip-on-my-linux-server/ The Linux firewall can block the ip address using below command: Block IP address: # iptables -A INPUT -s 65.55.44.100 -j DROP Unblock IP address: # iptables -D INPUT -s 65.55.44.100 -j DROP   Note: The Server Agent need Java code to get List of IP address with 404 status and process Linux command ..

Read more

Based on the “Project Venues” codebase. Deployed to “banana2017”. Running on port 8002 behind Nginx. Windows Service named “au.racquetvenues.com”. C:\SportLogic\au.racquetvenues.com To update to latest version run venues.s3-fetch.cmd On Windows the file “venues.xml” is used to configure the active Spring profile e.g. <arguments>-Dspring.profiles.active=au.racquetvenues.com -jar venues.war</arguments> The different Spring file may be configured different server port e.g. ..

Read more