summaryrefslogtreecommitdiff
path: root/docs/platform/troubleshooting.md
blob: 3fb2ada15b8deb9a2f5ee43a98766e140ece40a1 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
Webapp node
===========

Places to look for errors
-------------------------

* `/var/log/apache2/error.log`
* `/srv/leap/webapp/log/production.log`
* `/var/log/syslog` (watch out for stunnel issues)

Is haproxy ok ? 
---------------


    curl -X  GET "http://127.0.0.1:4096"

Is couchdb accessible through stunnel ?
---------------------------------------


    curl -X  GET "http://127.0.0.1:4000"


Check couchdb acl
-----------------


    mkdir /etc/couchdb
    cat /srv/leap/webapp/config/couchdb.yml.admin  # see username and password
    echo "machine 127.0.0.1 login admin password <PASSWORD>" > /etc/couchdb/couchdb-admin.netrc
    chmod 600 /etc/couchdb/couchdb-admin.netrc

    curl --netrc-file /etc/couchdb/couchdb-admin.netrc -X GET "http://127.0.0.1:4096"
    curl --netrc-file /etc/couchdb/couchdb-admin.netrc -X GET "http://127.0.0.1:4096/_all_dbs"
    

Couchdb node
============

Places to look for errors
-------------------------

* `/opt/bigcouch/var/log/bigcouch.log`
* `/var/log/syslog` (watch out for stunnel issues)


Bigcouch membership
-------------------

* Do all nodes show up both in and ?


    curl --netrc-file /etc/couchdb/couchdb.netrc 'http://127.0.0.1:5984/_membership'



Databases
---------

Design Documents
----------------

* Is User `_design doc` available ?


    curl --netrc-file /etc/couchdb/couchdb.netrc -X  GET "http://127.0.0.1:5984/users/_design/User"



MX node
=======

Query leap-mx
-------------

* for useraccount 


    postmap -v -q  "joe@dev.bitmask.net" tcp:localhost:2244


* for mailalias


    postmap -v -q  "joe@dev.bitmask.net" tcp:localhost:4242