Manage multiple clients

This commit is contained in:
Philippe Caseiro 2018-05-28 16:13:45 +02:00
parent b385b1e091
commit 8f5aaff1de
2 changed files with 14 additions and 7 deletions

View File

@ -81,6 +81,7 @@ GenConfig (Mode Normal) -> Database cluster :
If you have only 2 nodes you need to setup an arbitrator, for this follow the tutorial in the eole-galera-arbitrator project page https://forge.cadoles.com/Cadoles/eole-galera-arbitrator If you have only 2 nodes you need to setup an arbitrator, for this follow the tutorial in the eole-galera-arbitrator project page https://forge.cadoles.com/Cadoles/eole-galera-arbitrator
# How-to for Eole 2.6.2 (From scratch) # How-to for Eole 2.6.2 (From scratch)
## Sources ## Sources

View File

@ -25,7 +25,6 @@ then
accounts=($(CreoleGet accName)) accounts=($(CreoleGet accName))
limits="$(CreoleGet accLimitTarget '')" limits="$(CreoleGet accLimitTarget '')"
accLimits=(${limits// /}) accLimits=(${limits// /})
index=0
previousUsers=($(awk -F ':' '{print $1}' ${readerfile} )) previousUsers=($(awk -F ':' '{print $1}' ${readerfile} ))
@ -42,13 +41,20 @@ then
else else
ipAddr=($(CreoleGet ipMariaDBLimit)) ipAddr=($(CreoleGet ipMariaDBLimit))
ipMask=($(CreoleGet maskMariaDBLimit)) ipMask=($(CreoleGet maskMariaDBLimit))
if [[ ${ipMask} == "255.255.255.255" ]] ix=0
then for ip in ${ipAddr[@]}
hostsList+=("${ipAddr}") do
else if [[ ${ipMask[${ix}]} == "255.255.255.255" ]]
hostsList+=("${ipAddr}/${ipMask}") then
fi hostsList+=("${ip}")
else
hostsList+=("${ip}/${ipMask[${ix}]}")
fi
ix=$((ix+1))
done
fi fi
index=0
for hst in ${hostsList[@]} for hst in ${hostsList[@]}
do do
SQL="DROP USER IF EXISTS '${user}'@'${hst}';" SQL="DROP USER IF EXISTS '${user}'@'${hst}';"