Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
1.1 Download Janssen archieve: wget https://github.com/JanssenProject/jans/archive/refs/heads/jans-linux-setup-gluu2flex-migration.zip
1.2 Extract archieve: unzip jans-linux-setup-gluu2flex-migration.zip
1.3 Execute script: python3 jans-jans-linux-setup-gluu2flex-migration/jans-linux-setup/tools/gluu2flex-migration/gluu2flex.py
Before procceding, make sure that you have the backup. In case any failure, you can revert back and restart these steps. Let's start:
Install postgresql server on your system (version should be at least 14.0) or any host that can be reachable from gluu host.
Let's install postgresql
with the following command:
#!/bin/sh | |
# Uncomment this is you want some more verbose output to see what is happening | |
#set -x | |
## Variables | |
# Change this directory name if you want to place these somewhere else | |
_projectdir=~/projects | |
_gitrepo=https://github.com/mkubecek/vmware-host-modules.git | |
if [ $(grep -q "workstation.product.version" /etc/vmware/config;echo $?) -eq 0 ];then |
#!/usr/bin/env python3 | |
import re | |
import csv | |
import operator | |
errors = {} | |
stats = {} | |
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<ui:composition xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:f="http://xmlns.jcp.org/jsf/core" | |
xmlns:ui="http://xmlns.jcp.org/jsf/facelets" | |
xmlns:h="http://xmlns.jcp.org/jsf/html" | |
template="/WEB-INF/incl/layout/template.xhtml"> | |
<f:metadata> |
from org.gluu.oxauth.service import AuthenticationService | |
from org.gluu.oxauth.service import UserService | |
from org.gluu.oxauth.auth import Authenticator | |
from org.gluu.oxauth.security import Identity | |
from org.gluu.model.custom.script.type.auth import PersonAuthenticationType | |
from org.gluu.service.cdi.util import CdiUtil | |
from org.gluu.util import StringHelper | |
from org.gluu.oxauth.util import ServerUtil |