Tap Forms – Organizer Database App for Mac, iPhone, and iPad › Forums › Using Tap Forms › Couchdb Sync not working
- This topic has 28 replies, 3 voices, and was last updated 4 years, 10 months ago by Brendan.
-
AuthorPosts
-
December 26, 2019 at 2:32 AM #38924
wongalainParticipantMy computer can connect to my couchdb within the same network through the browser, but Tapforms cannot sign in & sync.
But it works swiftly with another couchdb server over the internet.
Any ideas or solutions?December 26, 2019 at 3:04 AM #38927
BrendanKeymasterIt might be an address issue. Is CouchDB running on your Mac?
If so, then if that Mac is also running Tap Forms, then you would set the Server Address to http://127.0.0.1:5984
But from a different device on the network you’ll have to use http://#.#.#.#:5984 where the ### are whatever the IP address of the computer running CouchDB is. E.g. http://192.168.0.10:5984
Or, if you’d prefer to use a named device, then you’ll need to setup SSL and deal with certificates and then use port 6984.
December 26, 2019 at 3:08 AM #38928
wongalainParticipantDear Brendan,
It is not as I can use a browser on my Mac to log into the couchdb server & make configuration changes, but just the Tapforms cannot sign in that server & start syncing. Indeed Tapforms can sync when I use another couchdb server.
December 26, 2019 at 3:19 AM #38930
BrendanKeymasterDid you set your bind_address to 0.0.0.0? If not, then your CouchDB server won’t accept connections from another device, only from the local computer.
December 26, 2019 at 3:32 AM #38932
wongalainParticipantYes. I have set, but still not working
December 26, 2019 at 3:35 AM #38933
BrendanKeymasterDo you get any connection errors?
December 26, 2019 at 4:41 PM #38947
wongalainParticipantNo. Attached are two screenshots.
I can the same Mac to log in the Couchdb Server through web-brower, but Tapforms cannot sign in with the same username & password.
I am thinking is there something wrong with the Tapforms couchdb modules.Attachments:
You must be logged in to view attached files.December 27, 2019 at 1:25 AM #38952
BrendanKeymasterIs that web browser running on the same machine that’s running CouchDB?
December 27, 2019 at 1:47 AM #38954
Sam MoffattParticipant160.30.44.35 should be publicly routable IP space, what sort of network setup do you have?
Without knowing the internals of your network, it feels like something is dropping packets or otherwise interfering with communication.
December 27, 2019 at 3:17 AM #38956
wongalainParticipantThe web browser is running on my Mac while the couchdb is running on another server. Both are within the intranet in my office
December 27, 2019 at 10:31 AM #38961
Sam MoffattParticipantWhat is your local IP address and do you mind running a traceroute to show if there is anything in the path to the server? The error message indicates TF making a request but that request failing along the way. I’d also check the CouchDB server logs to see if it is seeing any requests. The first request TF will make will be to create a database on the server but given the screenshots even that simple question is failing.
December 27, 2019 at 8:51 PM #38969
wongalainParticipantThe traceroute seems to be ok
Attachments:
You must be logged in to view attached files.December 27, 2019 at 8:54 PM #38971
wongalainParticipantI think the problem is Tapforms cannot create a database despite correct URL, username & password
December 27, 2019 at 9:38 PM #38972
Sam MoffattParticipantCan you try the following with the correct username/password:
curl -v -c /tmp/tf.jar -XPOST --data-urlencode "name=USERNAME" --data-urlencode "password=PASSWORD" http://160.30.44.35:5984/_session
And then if you get a reasonable response (e.g. something like
"ok":true
) then try this one:
curl -v -b /tmp/tf.jar -c /tmp/tf.jar -XPUT http://160.30.44.35:5984/db-test
And share the results of both commands (excluding your password obviously).
December 27, 2019 at 9:43 PM #38977
BrendanKeymasterTap Forms needs an admin account in order to create the database on the server. It happens automatically when you sign-in. Or you have to create it on the server yourself first and then you can use a regular user account if you wish.
December 29, 2019 at 5:16 PM #39018
wongalainParticipantI tried both command, seems to be ok, but Tapforms still cannot connect to the couchdb.
What can i do?Attachments:
You must be logged in to view attached files.December 30, 2019 at 1:17 AM #39021
BrendanKeymasterCan you post your CouchDB.ini file?
Mine looks like this:
[couchdb] database_dir = /Users/brendan/Library/Application Support/CouchDB2/var/lib/couchdb view_index_dir = /Users/brendan/Library/Application Support/CouchDB2/var/lib/couchdb uri_file = /Users/brendan/Library/Application Support/CouchDB2/var/run/couchdb/couch.uri uuid = 36242477eed82d2a6fd90e28d45558cb [cluster] n = 1 q = 2 [log] writer = file file = /Users/brendan/Library/Logs/CouchDB2.log [admins] admin = some encoded password brendan = some encoded password [couch_httpd_auth] secret = some secret [chttpd] bind_address = 0.0.0.0 port = 5984 [daemons] httpsd = {chttpd, start_link, [https]} [ssl] port = 6984 key_file = /Users/brendan/server.key cert_file = /Users/brendan/server.crt ciphers = undefined tls_versions = undefined secure_renegotiate = undefined
December 30, 2019 at 1:58 AM #39022
wongalainParticipantDear Brendan,
attached is the content of the file
Regards,
Alain
Attachments:
You must be logged in to view attached files.December 30, 2019 at 1:52 PM #39027
BrendanKeymasterCan you open up the Console application, type in Tap Forms into the Search field and see if there’s any messages that appear there at the moment you try to login?
December 30, 2019 at 4:52 PM #39030
Sam MoffattParticipantDo you have any firewall software that can block per application outbound traffic?
December 30, 2019 at 5:41 PM #39031
wongalainParticipantEnclosed is the console log for Tapforms during login
Attachments:
You must be logged in to view attached files.December 30, 2019 at 7:35 PM #39033
Sam MoffattParticipantDo you have a network proxy configured in your network settings under system preferences?
December 30, 2019 at 11:15 PM #39034
wongalainParticipantyes… my network traffic must get through proxy server
December 31, 2019 at 1:17 AM #39035
Sam MoffattParticipantIs it possible to disable the proxy for the internal traffic? Or disable the proxy temporarily to test if the TF sync works properly without the proxy? Do you need to use the proxy server to get to your CouchDB server?
December 31, 2019 at 1:31 AM #39036
BrendanKeymasterHmm… Ok, another piece of the puzzle.
I’m not really that familiar with how the proxy could interfere with communication between Tap Forms and your CouchDB server. Is your CouchDB server running on a Mac? If so, did you try launching Tap Forms on that Mac and just using http://127.0.0.1:5984 to see if that works? That’ll tell you if Tap Forms is able to connect directly to your CouchDB server or not.
If it was a router between your Mac and the CouchDB server, then it might be a port forwarding issue. Or if it was a firewall then maybe it was blocking port 5984. Although you did connect via the web browser. But the web browser probably handles proxies properly I suppose.
December 31, 2019 at 1:00 PM #39041
Sam MoffattParticipantIt’s entirely possible that CouchbaseLite or CouchDB is generating something that the proxy dislikes. I’ve noticed in my logs it looks like CBL is over-encoding items that don’t need to be which could trigger a security filter in the proxy. Since
curl
can directly hit the server and I don’t think it’d go through a proxy, disabling the proxy to verify if it’s the cause would help. Ideally though the proxy wouldn’t activate for internal traffic, you should be able to configure a proxy bypass in system preferences in the network preference pane for those IP addresses.December 31, 2019 at 7:22 PM #39043
wongalainParticipantDear Brendan & Sam,
Thank you so much for your kind assistance.
Both of you are correct. My couchdb server was on a QNAP NAS with docker. Some how I find a way to bypass the proxy server & it works smoothly & perfect.
I think it is the IT department change some setting with our proxy server which previously support port 5984 to the couchdb server.December 31, 2019 at 10:48 PM #39044
Sam MoffattParticipantGood to hear you got it figured out :) Happy New Year!
January 1, 2020 at 3:17 AM #39047
BrendanKeymasterOh that’s awesome! I’m glad you got it working now.
And yes, Happy New Year to you guys too!
-
AuthorPosts
You must be logged in to reply to this topic.