PGPoolJUI is a simple web ui for PGPool made with Vaadin and Groovy. No database changes required, working with already existing PGPool database.
Allows you to return accounts to work, that was banned N days ago. Note, that it doesn't perform ban check. After this action PGPool may can allocate them for RocketMap, and map shuold perfom checks on its own.
RocketMap database should be created first.
Requires JRE 8
- Download latest release.
- Create application.properties file with flowing fields:
server.port=8282
spring.datasource.url=jdbc:mysql://localhost:3306/pgo
spring.datasource.username=
spring.datasource.password=
- Change
pgpool
in database url for your DB name,username
andpassword
. - Start with
java -jar pgpooljui*.jar
Requires JDK 8
git clone
- Create application.properties same as above.
- Build jar:
./gradlew build
- Start with:
java -jar build/libs/pgpooljui*.jar
In application.properties
:
server.contextPath=/poolui
nginx configuration:
location /poolmap {
proxy_pass http://localhost:8080/poolui;
... other stuff
In application.properties
:
server.address=127.0.0.1