mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2026-03-04 00:01:12 -05:00
Cannot start AdGuard Home Service #2118
Labels
No labels
P1: Critical
P2: High
P3: Medium
P4: Low
UI
bug
cannot reproduce
compatibility
dependencies
docker
documentation
duplicate
enhancement
enhancement
external libs
feature request
good first issue
help wanted
infrastructure
invalid
localization
needs investigation
performance
potential-duplicate
question
recurrent
research
snap
waiting for data
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/AdGuardHome#2118
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dennyamarojr on GitHub (Nov 7, 2020).
Prerequisites
Please answer the following questions for yourself before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Issue Details
AdGuard Home v0.104.0
Upstream DNS servers
https://doh.opendns.com/dns-query
https://dns.cloudflare.com/dns-query
Bootstrap DNS servers
208.67.222.222
208.67.220.220
2620:119:35::35
2620:119:53::53
1.1.1.1
1.0.0.1
2606:4700:4700::1111
2606:4700:4700::1001
The other options, I let in the default configuration.
Windows 10 Pro 1703, 64-bit
Expected Behavior
I expect to AdGuard Home services works, but something is preventing this to happen, I try to find in the issues section available here and didn't any issue opened or closed about the issue I got.
Actual Behavior
I follow the installation and configuration steps available in the documentation and in the CMD works perfectly, but when I go to the services the Adguard Home Service is not running, is just there and when I try to run manually appear Error 1067, which I search for solutions and didn't work too, because it shows another issue. :(
Screenshots
The following screenshots is when I install and try to start the service in CMD
The next picture, is when I try to run the service manually.
Screenshot:
Additional Information
@ameshkov commented on GitHub (Nov 9, 2020):
To troubleshoot this issue we need to see AdGuard Home logs.
log_fileverbosetoTrue@stale[bot] commented on GitHub (Jan 8, 2021):
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
@SuXiChao1101 commented on GitHub (Sep 8, 2023):
I have also encountered the same problem, it seems that after turning off Windows logging, ADGuardHome cannot run. Opening ADGuardHome Service in Windows service will prompt "error 1067". I am also thinking, can ADGuardHome run independently without Windows logs or similar environments?
The script for closing Windows logs is roughly as follows:
set "key=HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WMI\Autologger\EventLog-System" for /f "delims=" %%A in ('reg query %key%') do ( echo "%%A" reg add "%%A" /v "Enabled" /t REG_DWORD /d 0 /f reg add "%%A" /v "EnableProperty" /t REG_DWORD /d 0 /f )