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
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
Boxiang Sun
gitlab-ce
Commits
b001487d
Commit
b001487d
authored
Nov 10, 2017
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document how to troubleshoot internal API calls
[ci skip] iFoo
parent
4a89018e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
doc/administration/troubleshooting/debug.md
doc/administration/troubleshooting/debug.md
+28
-0
No files found.
doc/administration/troubleshooting/debug.md
View file @
b001487d
...
...
@@ -163,6 +163,34 @@ separate Rails process to debug the issue:
1.
In a new window, run
`top`
. It should show this ruby process using 100% CPU. Write down the PID.
1.
Follow step 2 from the previous section on using gdb.
### GitLab: API is not accessible
This often occurs when gitlab-shell attempts to request authorization via the
internal API (e.g.,
`http://localhost:8080/api/v4/internal/allowed`
), and
something in the check fails. There are many reasons why this may happen:
1.
Timeout connecting to a database (e.g., PostgreSQL or Redis)
1.
Error in Git hooks or push rules
1.
Error accessing the repository (e.g., stale NFS handles)
To diagnose this problem, try to reproduce the problem and then see if there
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
```
If you cannot isolate which Unicorn worker is the issue, try to run
`strace`
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
```
The output in
`/tmp/unicorn.txt`
may help diagnose the root cause.
# More information
*
[
Debugging Stuck Ruby Processes
](
https://blog.newrelic.com/2013/04/29/debugging-stuck-ruby-processes-what-to-do-before-you-kill-9/
)
...
...
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