lunedì 1 febbraio 2016

Openam - create and configure authentication module


cp oauth.jar /opt/tomcat/webapps/openam/WEB-INF/lib/

cp amAuth.properties /opt/tomcat/webapps/openam/WEB-INF/classes/
cp Auth.xml /opt/tomcat/webapps/openam/config/auth/default/
vi /tmp/pwd.txt
>    secret12
chmod 400 /tmp/pwd.txt
chown user /tmp/pwd.txt

./ssoadm create-svc -u amadmin -f /tmp/pwd.txt -X /home/user/...Auth.xml

./ssoadm register-auth-module -u amadmin -f /tmp/pwd.txt -a "com.boh.authentication.modules.oauth.Auth"



Run minikube with podman on Fedora

After install minikube as described in the documentation , set rootless property to true to use Podman without sudo: minikube config set roo...