Posted On August 4, 2021

Pihole Error: Tried 100 Times to Connect to FTL Server

kimconnect 0 comments
blog.KimConnect.com >> Linux , Windows >> Pihole Error: Tried 100 Times to Connect to FTL Server
Error Message:
DataTables warning: table id=all-queries - Tried 100 times to connect to FTL server, but never got proper reply. Please check Port and logs!
Resolution:

Case Standalone Linux OS Installation:

sudo service pihole-FTL stop
sudo mv /etc/pihole/pihole-FTL.db/etc/pihole/pihole-FTL-damaged.db
sudo service pihole-FTL start

Case Kubernetes Cluster:

k scale deployment --replicas=0 pihole
# wait a few seconds for existing pods to terminate
sudo mv /mnt/pathToNfsPihole/pihole-FTL.db /mnt/pathToNfsPihole/pihole-FTL.db.bad
k scale deployment --replicas=1 pihole

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Problem: NextCloud Would Not Start Due to Versioning Variance

This issue has occurred when NextCloud has been upgraded after deployment. Its source docker container…

PowerShell: Command to Retrieve Windows Applications List

The following the the PoSH equivalent of appwiz.cpl in Windows: PS> invoke-command TestWindows {Get-Package -Provider…

HAProxy on CentOS 7

# Install HAProxy 1.8 using SCL repo yum install centos-release-scl yum install rh-haproxy18-haproxy rh-haproxy18-haproxy-syspaths  …