shreemaan-abhishek commented on issue #9006: URL: https://github.com/apache/apisix/issues/9006#issuecomment-1455452661
Hi, you can [install etcdctl](https://etcd.io/docs/v3.2/install/) and run this command to check if etcd is running properly: `etcdctl get /apisix --prefix --endpoints 127.0.0.1:2379` `2379` being the port on which etcd is listening (the default port is `2379`) The output would be something like this: ```bash /apisix/consumer_groups/ init_dir /apisix/consumers/ init_dir /apisix/consumers/chen {"update_time":1673614214,"plugins":{"jwt-auth":{"base64_secret":false,"lifetime_grace_period":0,"secret":"chen-key","algorithm":"HS256","key":"chen-key","exp":86400}},"username":"chen","create_time":1673614212} /apisix/consumers/foo {"create_time":1673614799,"plugins":{"basic-auth":{"username":"foo","password":"$secret:\/\/vault\/test1\/foo\/passwd"}},"username":"foo","update_time":1673614807} /apisix/consumers/jack {"username":"jack","create_time":1673614215,"update_time":1673614870,"plugins":{"key-auth":{"key":"auth-one"}}} /apisix/consumers/jack1 {"username":"jack1","create_time":1673614294,"plugins":{"basic-auth":{"username":"jack2019","password":"123456"}},"update_time":1673614294} /apisix/consumers/jack2 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
