-
Notifications
You must be signed in to change notification settings - Fork 34
/
_tshoot-tech-access-broker.html.md.erb
59 lines (47 loc) · 1.45 KB
/
_tshoot-tech-access-broker.html.md.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
You can [access logs using Ops Manager](https://docs.pivotal.io/pivotalcf/customizing/troubleshooting.html#component_logs)
by clicking on the **Logs** tab in the tile and downloading the broker logs.
To access logs using the BOSH CLI, do the following:
1. Identify the on-demand broker (ODB) deployment by running the following command:
```
bosh deployments
```
1. View VMs in the deployment by running the following command:
```
bosh -d DEPLOYMENT-NAME instances
```
1. SSH onto the VM by running the following command:
```
bosh -d service-instance_GUID ssh
```
1. Download the broker logs by running the following command:
```
bosh -d service-instance_GUID logs
```
<br>
The archive generated by BOSH or Ops Manager includes the following logs:
<table class="nice">
<th>Log Name</th>
<th>Description</th>
<tr>
<td>broker.log</td>
<td>Requests to the on-demand broker and the actions the broker performs
while orchestrating the request (e.g. generating a manifest and calling BOSH).
Start here when troubleshooting.</td>
</tr>
<tr>
<td>broker_ctl.log</td>
<td>Control script logs for starting and stopping the on-demand broker.</td>
</tr>
<tr>
<td>post-start.stderr.log</td>
<td>Errors that occur during post-start verification.</td>
</tr>
<tr>
<td>post-start.stdout.log</td>
<td>Post-start verification.</td>
</tr>
<tr>
<td>drain.stderr.log</td>
<td>Errors that occur while running the drain script.</td>
</tr>
</table>