Ubuntu Hangs on 'Trying with selected node 0'

[UPDATE] [Solved]
Tried many things. Last one was with an Ubuntu 12.04 x64 LTS digital ocean droplet (instead of 14.04 x64).
Installed the same Couchbase 4.0.0 Community and Sync Gateway 1.2 Community on that server.
Setup the sync gateway same as in the original post but the error persisted.
As a last attempt, before falling back to “walrus” in memory server, I created a second bucket with a different name for use with the sync_gateway database.
Updated the config.json to use it. Restarted the sync gateways service… And guess what? It worked!!!
The interface services were started successfully on 4984 and 4985 as shown below.

2016-03-06T08:56:09.886-03:00 ==== Couchbase Sync Gateway/1.2.0(79;9df63a5) ====
2016-03-06T08:56:09.887-03:00 requestedSoftFDLimit >= currentHardFdLimit (5000 >= 4096) capping at 4096
2016-03-06T08:56:09.887-03:00 Configured process to allow 4096 open file descriptors
2016-03-06T08:56:09.887-03:00 Opening db /sync_gateway as bucket "syncGateway", pool "default", server <http://localhost:8091>
2016-03-06T08:56:09.887-03:00 Opening Couchbase database syncGateway on <http://localhost:8091>
2016/03/06 08:56:09  Trying with selected node 0
2016/03/06 08:56:09  Trying with http://127.0.0.1:8091/pools/default/bucketsStreaming/syncGateway
2016/03/06 08:56:09 Got new configuration for bucket syncGateway
2016/03/06 08:56:10  Trying with selected node 0
2016/03/06 08:56:10 go-couchbase: call to ViewCustom("sync_gateway", "access") in github.com/couchbase/sync_gateway/db.(*DatabaseContext).ComputeSequenceChannelsForPrincipal took 401.513431ms
2016-03-06T08:56:10.729-03:00     Reset guest user to config
2016-03-06T08:56:10.729-03:00 Starting admin server on :4985
2016-03-06T08:56:10.745-03:00 Starting server on :4984 ...

Examining the buckets I noticed the bucked named “sync_gateway” was created with 4Mb and pre-filled with “[0]” where the new one had only around 400K.
Could it be there is some hardcoded handling for the bucket named as “sync_gateway”?
Or because the bucket originally named “sync_gateway” same as the database? Doesn’t make any sense to me. But anyway…

For now I’ll keep the Ubuntu 12.04 droplet as dev box… May upgrade it later…

Thanks!