Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jboss-cluster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iSergio
jboss-cluster
Commits
244a827a
Commit
244a827a
authored
6 years ago
by
iSergio
Browse files
Options
Downloads
Patches
Plain Diff
PgPool escalation script
parent
c7658c5a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pgpool/bin/pgpool_escalation
+49
-0
49 additions, 0 deletions
pgpool/bin/pgpool_escalation
with
49 additions
and
0 deletions
pgpool/bin/pgpool_escalation
0 → 100644
+
49
−
0
View file @
244a827a
#!/bin/sh
touch
/tmp/pgpool_escalation
DONE
=
"[ done ]"
FAIL
=
"[ fail ]"
DOTSTRING
=
""
cols
=
`
tput cols
`
cols
=
$((
cols
-
10
))
cols
=
$((
cols
/
2
))
for
i
in
`
seq
1
$cols
`
;
do
DOTSTRING
=
$DOTSTRING
"."
done
function
align_left
()
{
local
chars
=
"
$1
"
local
str
=
"
${
@
:2
}
"
echo
-n
${
str
}${
chars
:
${#
str
}}
}
function
align_echo
()
{
if
[[
"
$1
"
!=
0
]]
;
then
echo
$FAIL
echo
"
$2
"
else
echo
$DONE
fi
}
# Start/Stop standalone jboss instance
result
=
`
jboss-cli
--controller
=
$1
--connect
--commands
=
"/host=standby/server=server-standalone:read-attribute(name=server-state)"
`
2>
$1
if
[[
$?
!=
0
]]
;
then
align_left
"
$DOTSTRING
"
"Start server-standalone"
result
=
`
jboss-cli
--controller
=
$1
--connect
--commands
=
"/host=standby/server-config=server-standalone:start()"
`
2>
$1
align_echo
$?
$result
else
if
[[
$result
=
*
"running"
*
]]
;
then
align_left
"
$DOTSTRING
"
"Stop server-standalone"
result
=
`
jboss-cli
--controller
=
$1
--connect
--commands
=
"/host=standby/server-config=server-standalone:stop()"
`
2>
$1
align_echo
$?
$result
fi
fi
# Start/Stop et7daemon
if
[[
!
-f
/var/run/et7daemon.pid
]]
;
then
/etc/init.d/et7daemon start
else
/etc/init.d/et7daemon stop
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment