This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ncat -lp 12345 --ssl | base 64 -d | tar xz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -it -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword postgres | |
docker run -it -e POSTGRES_PASSWORD=mysecretpassword docker.io/postgres /bin/bash | |
psql -h 192.168.15.104 -U postgres | |
create database unifiedpush; | |
create database keycloak; | |
create user unifiedpush with password 'unifiedpush'; | |
GRANT ALL PRIVILEGES ON DATABASE unifiedpush to unifiedpush; | |
GRANT ALL PRIVILEGES ON DATABASE keycloak to unifiedpush; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# testing UPS from source in WildFly | |
docker run -it -p 8080:8080 -v $PWD/databases/unifiedpush-h2-ds.xml:/opt/jboss/wildfly/standalone/deployments/unifiedpush-h2-ds.xml -v $PWD/servers/auth-server/target/auth-server.war:/opt/jboss/wildfly/standalone/deployments/auth-server.war -v $PWD/servers/ups-wildfly/target/ag-push.war:/opt/jboss/wildfly/standalone/deployments/ag-push.war jboss/wildfly /opt/jboss/wildfly/bin/standalone.sh -b 0.0.0.0 -c standalone-full.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# switch the log level to DEBUG on console | |
{wildfly}/bin/jboss-cli.sh --connect | |
[standalone@localhost:9990 /] /subsystem=logging/console-handler=CONSOLE:write-attribute(name=level,value=DEBUG) | |
[standalone@localhost:9990 /] /subsystem=logging/root-logger=ROOT:write-attribute(name=level,value=DEBUG) | |
# switch it back to whatever it was initial configuration (here it is INFO) | |
[standalone@localhost:9990 /] /subsystem=logging/console-handler=CONSOLE:write-attribute(name=level,value=INFO) | |
[standalone@localhost:9990 /] /subsystem=logging/root-logger=ROOT:write-attribute(name=level,value=INFO) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- url: http://blog.nerdin.ch/feeds/posts/default/-/aerogear | |
email: [email protected] | |
exists in planet | |
- url: http://matthiaswessendorf.wordpress.com/category/aerogear/feed/ | |
email: [email protected] | |
https://planet.jboss.org/#tags=feed_name_mwessendorf |
AeroGear's Android libraries were built as jar, apklib and aar using Maven and the android-maven-plugin. The project follows the standard Android project layout as opposed to the standard Maven layout so sources will be in /src instead of /src/main/java and can be imported directly into IDE as an Android project.
The core library contains common components and interfaces which the rest of the AeroGear Android libraries depend on.
| | Project Info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker build -t easymysql github.com/nkratzke/easymysql | |
docker run -it -p 3306:3306 -e user="someuser" -e password="somepassword" -e right="WRITE" easymysql | |
#### second console: | |
### mind to change IP address to the docker address | |
docker run -it easymysql /bin/bash | |
root@408ffa1f5036:/# mysql -h 172.17.42.1 -u someuser -p | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define("src/aerogear.core", | |
["exports"], | |
function(__exports__) { | |
"use strict"; | |
/* AeroGear JavaScript Library | |
* https://github.com/aerogear/aerogear-js | |
* JBoss, Home of Professional Open Source | |
* Copyright Red Hat, Inc., and individual contributors | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); |
NewerOlder