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
039c5f04
Commit
039c5f04
authored
6 years ago
by
iSergio
Browse files
Options
Downloads
Patches
Plain Diff
Rename categories
parent
90f9bbb9
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
pgpool/configure.sh
+12
-12
12 additions, 12 deletions
pgpool/configure.sh
postgresql/bin/pg_replication
+8
-3
8 additions, 3 deletions
postgresql/bin/pg_replication
postgresql/configure.sh
+1
-1
1 addition, 1 deletion
postgresql/configure.sh
with
21 additions
and
16 deletions
pgpool/configure.sh
+
12
−
12
View file @
039c5f04
...
@@ -12,10 +12,10 @@ fi
...
@@ -12,10 +12,10 @@ fi
TYPE
=
primary
TYPE
=
primary
VERBOSE
=
false
VERBOSE
=
false
CATEGORY
=
a
CATEGORY
=
A
DB_CLUSTER
=
false
DB_CLUSTER
=
false
usage
=
"
$(
basename
"
$0
"
)
[-h] [-p|s] [-
a|b
] [-d] -- Script configure pgpool-II
usage
=
"
$(
basename
"
$0
"
)
[-h] [-p|s] [-
A|B
] [-d] -- Script configure pgpool-II
where:
where:
-h show this help text and exit
-h show this help text and exit
-p configure pgpool as primary
-p configure pgpool as primary
...
@@ -24,15 +24,15 @@ usage="$(basename "$0") [-h] [-p|s] [-a|b] [-d] -- Script configure pgpool-II
...
@@ -24,15 +24,15 @@ usage="$(basename "$0") [-h] [-p|s] [-a|b] [-d] -- Script configure pgpool-II
-b configure pgpool for category B (2 servers) (jboss and postgresql cluster on same hasts) (Default: a)
-b configure pgpool for category B (2 servers) (jboss and postgresql cluster on same hasts) (Default: a)
-d configure pgpool for PostgreSQL cluster (Default: false)
-d configure pgpool for PostgreSQL cluster (Default: false)
Example usage:
Example usage:
configure.sh -
p
-
a
-- PgPool will be configured for primary server Category A without PostgreSQL (app-primary)
configure.sh -
A
-
p
-- PgPool will be configured for primary server Category A without PostgreSQL (app-primary)
configure.sh -
s
-
a
-- PgPool will be configured for primary server Category A without PostgreSQL (app-standby)
configure.sh -
A
-
s
-- PgPool will be configured for primary server Category A without PostgreSQL (app-standby)
configure.sh -
p
-
a
-d -- PgPool will be configured for primary server Category A with PostgreSQL (db-primary)
configure.sh -
A
-
p
-d -- PgPool will be configured for primary server Category A with PostgreSQL (db-primary)
configure.sh -
s
-
a
-d -- PgPool will be configured for primary server Category A with PostgreSQL (db-standby)
configure.sh -
A
-
s
-d -- PgPool will be configured for primary server Category A with PostgreSQL (db-standby)
configure.sh -
p
-
b
-- PgPool will be configured for primary server Category B with PostgreSQL (primary)
configure.sh -
B
-
p
-- PgPool will be configured for primary server Category B with PostgreSQL (primary)
configure.sh -
s
-
b
-- PgPool will be configured for primary server Category B with PostgreSQL (standby)
configure.sh -
B
-
s
-- PgPool will be configured for primary server Category B with PostgreSQL (standby)
"
"
while
getopts
':psvh
ab
d'
option
;
do
while
getopts
':psvh
AB
d'
option
;
do
case
"
$option
"
in
case
"
$option
"
in
p
)
TYPE
=
primary
p
)
TYPE
=
primary
;;
;;
...
@@ -40,9 +40,9 @@ while getopts ':psvhabd' option; do
...
@@ -40,9 +40,9 @@ while getopts ':psvhabd' option; do
;;
;;
v
)
VERBOSE
=
true
v
)
VERBOSE
=
true
;;
;;
a
)
CATEGORY
=
a
A
)
CATEGORY
=
A
;;
;;
b
)
CATEGORY
=
b
B
)
CATEGORY
=
B
DB_CLUSTER
=
true
DB_CLUSTER
=
true
;;
;;
d
)
DB_CLUSTER
=
true
d
)
DB_CLUSTER
=
true
...
@@ -67,7 +67,7 @@ if [[ ! -z $_TYPE ]]; then
...
@@ -67,7 +67,7 @@ if [[ ! -z $_TYPE ]]; then
TYPE
=
$_TYPE
TYPE
=
$_TYPE
fi
fi
if
[[
$DB_CLUSTER
==
false
&&
"
$CATEGORY
"
==
"
a
"
]]
;
then
if
[[
$DB_CLUSTER
==
false
&&
"
$CATEGORY
"
==
"
A
"
]]
;
then
PGPOOL_PRIMARY_HOST
=
$JBOSS_PRIMARY_HOST
PGPOOL_PRIMARY_HOST
=
$JBOSS_PRIMARY_HOST
PGPOOL_STANDBY_HOST
=
$JBOSS_STANDBY_HOST
PGPOOL_STANDBY_HOST
=
$JBOSS_STANDBY_HOST
fi
fi
...
...
This diff is collapsed.
Click to expand it.
postgresql/bin/pg_replication
+
8
−
3
View file @
039c5f04
...
@@ -227,21 +227,26 @@ if [ $# -lt 1 ]; then
...
@@ -227,21 +227,26 @@ if [ $# -lt 1 ]; then
exit
1
exit
1
fi
fi
CONFIGURE
=
false
while
getopts
':hcst'
option
;
do
while
getopts
':hcst'
option
;
do
case
"
$option
"
in
case
"
$option
"
in
h
)
echo
"
$usage
"
h
)
echo
"
$usage
"
exit
exit
;;
;;
c
)
configure
exit
;;
s
)
status
s
)
status
;;
;;
t
)
PGTUNE
=
true
t
)
PGTUNE
=
true
;;
;;
c
)
CONFIGURE
=
true
;;
\?
)
printf
"illegal option: -%s
\n
"
"
$OPTARG
"
>
&2
\?
)
printf
"illegal option: -%s
\n
"
"
$OPTARG
"
>
&2
echo
"
$usage
"
>
&2
echo
"
$usage
"
>
&2
exit
1
exit
1
;;
;;
esac
esac
done
done
if
[[
"
$CONFIGURE
"
==
true
]]
;
then
configure
fi
This diff is collapsed.
Click to expand it.
postgresql/configure.sh
+
1
−
1
View file @
039c5f04
...
@@ -97,5 +97,5 @@ sed -i 's/__PGPOOL_STANDBY_HOST__/'$PGPOOL_STANDBY_HOST'/g' /usr/local/bin/pg_re
...
@@ -97,5 +97,5 @@ sed -i 's/__PGPOOL_STANDBY_HOST__/'$PGPOOL_STANDBY_HOST'/g' /usr/local/bin/pg_re
cp
-rf
tsearch_data/
*
/usr/share/pgsql/tsearch_data/
cp
-rf
tsearch_data/
*
/usr/share/pgsql/tsearch_data/
if
[[
"
$TYPE
"
==
"primary"
]]
;
then
if
[[
"
$TYPE
"
==
"primary"
]]
;
then
pg_replication
-c
pg_replication
-c
-t
fi
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