Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
355feb42
Commit
355feb42
authored
Feb 15, 2014
by
Till Brehm
Browse files
Fixed: FS#3278 - Semaphore processes httpd rescue
parent
91bb6126
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/mods-available/rescue_core_module.inc.php
View file @
355feb42
...
...
@@ -272,6 +272,17 @@ class rescue_core_module {
/* Set the new try counter */
$this
->
_rescueData
[
'webserver'
][
'try_counter'
]
=
$tryCount
;
if
(
$tryCount
>
2
&&
$conf
[
'serverconfig'
][
'web'
][
'server_type'
]
!=
'nginx'
)
{
if
(
$app
->
system
->
is_user
(
'apache'
))
{
$app
->
log
(
"Clearing semaphores table for user apache."
,
LOGLEVEL_WARN
);
exec
(
"ipcs -s | grep apache | awk '{ print $2 }' | xargs ipcrm sem"
);
}
if
(
$app
->
system
->
is_user
(
'www-data'
))
{
$app
->
log
(
"Clearing semaphores table for user apache."
,
LOGLEVEL_WARN
);
exec
(
"ipcs -s | grep www-data | awk '{ print $2 }' | xargs ipcrm sem"
);
}
}
/* if 5 times will not work, we have to give up... */
if
(
$tryCount
>
5
){
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment