Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
f4ef3054
Commit
f4ef3054
authored
Oct 10, 2002
by
Toby Dickenson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merged new documentation from Zope-2_6-branch
parent
8c17bdc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
doc/SIGNALS.txt
doc/SIGNALS.txt
+37
-0
No files found.
doc/SIGNALS.txt
0 → 100644
View file @
f4ef3054
Signals are a posix inter-process communications mechanism.
If you are using Windows then this documentation is not
for you.
Zope responds to signals which are sent to the process id
written to the file /path/to/var/Z2.pid.
SIGHUP - close open database connections and sockets,
then restart the server process. The common
idiom for restarting a Zope server is
kill -SIGHUP `cat /path/to/var/z2.pid`
SIGTERM - close open database connections and sockets,
then shut down. The default stop script uses
kill -SIGTERM `cat /path/to/var/Z2.pid`
SIGUSR2 - close and re-open all Zope log files (z2.log,
event log, detailed log.) The common idiom
after rotating Zope log files is
kill -SIGUSR2 `cat /path/to/var/z2.pid`
SIGINT - same as SIGTERM
Exactly which process has its pid written to this file
depends on whether Zope is run under the management
process. If using a management process (the default)
then its pid is recorded here. Relevant signals sent to
the management process are forwarded on to the server
process. (Specifically, it forwards all those signals
listed above, plus SIGQUIT and SIGUSR1)
If not using a management process (-Z0 on the z2.py
command line) then the server process records its own
pid here.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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