Ingressgateway readness probe failed

I use the following command try to install my istio,
[root@k8s-test-matser bin]# istioctl install
This will install the Istio 1.9.2 profile with [“Istio core” “Istiod” “Ingress gateways”] components into the cluster. Proceed? (y/N) y
:heavy_check_mark: Istio core installed

  • Processing resources for Istiod. Waiting for Deployment/istio-system/istiod :heavy_check_mark: Istiod installed
    ✘ Ingress gateways encountered an error: failed to wait for resource: resources not ready after 5m0s: timed out waiting for the condition
    Deployment/istio-system/istio-ingressgateway
  • Pruning removed resources Error: failed to install manifests: errors occurred during operation

=====
version: 1.9.2
[root@k8s-test-matser backend]# kubectl -n istio-system get pod
NAME READY STATUS RESTARTS AGE
istio-ingressgateway-7cc49dcd99-5khww 0/1 Running 0 13m
istiod-db9f9f86-n4wwj 1/1 Running 0 13m

=====
I check the ingressgateway pod log,
2021-03-29T09:29:40.872032Z warn ca ca request failed, starting attempt 1 in 99.051689ms
2021-03-29T09:29:40.971267Z warn ca ca request failed, starting attempt 2 in 181.799627ms
2021-03-29T09:29:41.153317Z warn ca ca request failed, starting attempt 3 in 385.228958ms
2021-03-29T09:29:41.539005Z warn ca ca request failed, starting attempt 4 in 872.304983ms
2021-03-29T09:29:42.181901Z warn Envoy proxy is NOT ready: config not received from Pilot (is Pilot running?): cds updates: 0 successful, 0 rejected; lds updates: 0 successful, 0 rejected
2021-03-29T09:29:42.411647Z warn sds failed to warm certificate: failed to generate workload certificate: create certificate: rpc error: code = Unavailable desc = connection error: desc = “transport: Error while dialing dial tcp 10.102.106.72:15012: i/o timeout”
2021-03-29T09:29:44.182146Z warn Envoy proxy is NOT ready: config not received from Pilot (is Pilot running?): cds updates: 0 successful, 0 rejected; lds updates: 0 successful, 0 rejected
2021-03-29T09:29:46.181860Z warn Envoy proxy is NOT ready: config not received from Pilot (is Pilot running?): cds updates: 0 successful, 0 rejected; lds updates: 0 successful, 0 rejected
2021-03-29T09:29:48.182212Z warn Envoy proxy is NOT ready: config not received from Pilot (is Pilot running?): cds updates: 0 successful, 0 rejected; lds updates: 0 successful, 0 rejected
2021-03-29T09:29:50.182478Z warn Envoy proxy is NOT ready: config not received from Pilot (is Pilot running?): cds updates: 0 successful, 0 rejected; lds updates: 0 successful, 0 rejected
2021-03-29T09:29:52.182179Z warn Envoy proxy is NOT ready: config not received from Pilot (is Pilot running?): cds updates: 0 successful, 0 rejected; lds updates: 0 successful, 0 rejected
2021-03-29T09:29:54.182443Z warn Envoy proxy is NOT ready: config not received from Pilot (is Pilot running?): cds updates: 0 successful, 0 rejected; lds updates: 0 successful, 0 rejected
2021-03-29T09:29:56.182248Z warn Envoy proxy is NOT ready: config not received from Pilot (is Pilot running?): cds updates: 0 successful, 0 rejected; lds updates: 0 successful, 0 rejected
2021-03-29T09:29:58.182309Z warn Envoy proxy is NOT ready: config not received from Pilot (is Pilot running?): cds updates: 0 successful, 0 rejected; lds updates: 0 successful, 0 rejected
2021-03-29T09:30:00.182362Z warn Envoy proxy is NOT ready: config not received from Pilot (is Pilot running?): cds updates: 0 successful, 0 rejected; lds updates: 0 successful, 0 rejected
2021-03-29T09:30:02.181848Z warn Envoy proxy is NOT ready: config not received from Pilot (is Pilot running?): cds updates: 0 successful, 0 rejected; lds updates: 0 successful, 0 rejected

Anyone can help me check it? thanks!