PermalinkPrepare to Administer Kong Gateway
Before getting started with using Kong Gateway, verify that it was installed correctly, and that you’re ready to administer it.
PermalinkBefore you begin
Before you start this section, make sure that:
- Kong Gateway is installed and running.
- Kong Manager (if applicable) and Kong Admin API ports are listening on the appropriate port/IP/DNS settings.
- If using declarative configuration to configure Kong Gateway, decK is installed.
In this guide, an instance of Kong Gateway is referenced via
<admin-hostname>
. Make sure to replace <admin-hostname>
with the hostname
of your control plane instance.
PermalinkVerify the Kong Gateway configuration
Permalink(Optional) Verify Control Plane and Data Plane connection
If you’re running Kong Gateway in Hybrid mode, you will need to perform all tasks in this guide from the Control Plane. However, you can check that all of your configurations are being pushed from the Control Plane to your Data Planes using the Cluster Status CLI.
Run the following on a Control Plane:
The output shows all of the connected Data Plane instances in the cluster:
{
"data": [
{
"config_hash": "a9a166c59873245db8f1a747ba9a80a7",
"hostname": "data-plane-2",
"id": "ed58ac85-dba6-4946-999d-e8b5071607d4",
"ip": "192.168.10.3",
"last_seen": 1580623199,
"status": "connected"
},
{
"config_hash": "a9a166c59873245db8f1a747ba9a80a7",
"hostname": "data-plane-1",
"id": "ed58ac85-dba6-4946-999d-e8b5071607d4",
"ip": "192.168.10.4",
"last_seen": 1580623200,
"status": "connected"
}
],
"next": null
}
PermalinkSummary and next steps
In this section, you learned about the methods of administering Kong Gateway and how to access its configuration. Next, go on to learn about exposing your services with Kong Gateway.