-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #272 from HoomanDigital/main
pr: 257
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/content/Docs/providers/build-a-cloud-provider/time-synchronization/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
categories: ["Providers"] | ||
tags: [] | ||
weight: 2 | ||
title: "Time Synchronization" | ||
linkTitle: "Time Synchronization" | ||
--- | ||
|
||
To ensure your Akash node maintains accurate time synchronization, we recommend using `chrony` over `systemd-timesyncd`. Chrony is a versatile implementation of the Network Time Protocol (NTP) and ensures better time accuracy and reliability. | ||
|
||
The guide is broken down into the following sections: | ||
|
||
- [Installation](#installation) | ||
|
||
## Installation | ||
|
||
Chrony is straightforward to install and configure. Run the following command to install chrony: | ||
|
||
```bash | ||
apt -y install chrony | ||
``` | ||
|
||
Chrony automatically disables the systemd-timesyncd service upon installation, so no additional configuration is needed. | ||
|
||
**Rationale** | ||
|
||
We found that some servers were out of sync, and all attempts to fix `systemd-timesyncd` were unsuccessful. Chrony, used in various production environments, ensures perfect time synchronization. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters