要查看Couchbase數據庫中的數據,您可以使用Couchbase命令行實用程序(couchbase-cli
)或Couchbase Web控制臺。
使用couchbase-cli命令行實用程序:
./couchbase-cli server-list -c <cluster_address> -u <username> -p <password>
其中,<cluster_address>
是Couchbase集群的地址,<username>
和<password>
是用于連接到集群的憑據。./couchbase-cli bucket-dump -c <cluster_address> -u <username> -p <password> --bucket=<bucket_name>
其中,<bucket_name>
是要查看數據的桶的名稱。使用Couchbase Web控制臺:
http://localhost:8091
)。請注意,上述方法僅適用于Couchbase Server。如果您使用的是Couchbase Lite或Couchbase Mobile,請查閱相應的文檔以了解如何查看數據。