Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
1d3cd707
Commit
1d3cd707
authored
Jan 06, 2020
by
Drew Blessing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update `strace` commands to use `yyy`
parent
b5d8f44b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
doc/administration/troubleshooting/debug.md
doc/administration/troubleshooting/debug.md
+2
-2
No files found.
doc/administration/troubleshooting/debug.md
View file @
1d3cd707
...
...
@@ -196,7 +196,7 @@ is a Unicorn worker that is spinning via `top`. Try to use the `gdb`
techniques above. In addition, using
`strace`
may help isolate issues:
```
shell
strace
-tt
-T
-f
-s
1024
-p
<PID of unicorn worker>
-o
/tmp/unicorn.txt
strace
-tt
Tfyyy
-s
1024
-p
<PID of unicorn worker>
-o
/tmp/unicorn.txt
```
If you cannot isolate which Unicorn worker is the issue, try to run
`strace`
...
...
@@ -204,7 +204,7 @@ on all the Unicorn workers to see where the `/internal/allowed` endpoint gets
stuck:
```
shell
ps auwx |
grep
unicorn |
awk
'{ print " -p " $2}'
| xargs
strace
-tt
-T
-f
-s
1024
-o
/tmp/unicorn.txt
ps auwx |
grep
unicorn |
awk
'{ print " -p " $2}'
| xargs
strace
-ttTfyyy
-s
1024
-o
/tmp/unicorn.txt
```
The output in
`/tmp/unicorn.txt`
may help diagnose the root cause.
...
...
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