-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Management zh TW
本章節涵蓋的相關主題是以最佳方式管理ASF程序。 雖然並非嚴格強制使用,但它包含了我們想分享的大量提示、技巧和良好實作,特別是對於系統管理員、打包ASF以便於在第三方儲存庫中使用的人,及進階使用者等。
在generic
及linux
變體版本中,ASF自帶[email protected]
檔案,這是systemd
的服務設定檔。 若您想以服務來執行ASF,例如能在您的設備啟動時自動執行,那麼正確的systemd
服務無疑是最好的方法,因此我們強烈推薦透過服務,而不是使用nohup
、screen
或其他方法來管理。
首先,若您還尚未建立用來執行ASF使用者,請先建立它。 我們在此以asf
使用者作為範例,若您想使用另外一個,您就必須將下列範例中的asf
使用者取代成您想使用的使用者名稱。 我們的服務不允許您使用root
來執行ASF,因為這被認為是不好的方式。
su # 或是 sudo -i
useradd -m asf
下一步,將ASF解壓縮至/home/asf/ArchiSteamFarm
資料夾。 資料夾的結構對我們的服務單元來說非常重要,它應為您的$HOME
,也就是說ArchiSteamFarm
資料夾需要放在/home/<user>
中。 若您的操作完全正確,則現在應存在/home/asf/ArchiSteamFarm/[email protected]
檔案。 若您使用linux
變體版本,且檔案不在Linux中解壓縮,而是例如從Windows傳輸,那麼您也需執行chmod +x /home/asf/ArchiSteamFarm/ArchiSteamFarm
。
我們將使用root
的身分執行操作,所以需使用su
或sudo -i
。
我們最好先確認資料夾仍屬於asf
使用者,執行一次chown -hR asf:asf /home/asf/ArchiSteamFarm
即可。 因為例如您用root
來下載且/或解壓縮.zip檔,權限可能會不正確。
接下來,cd /etc/systemd/system
,執行ln -s /home/asf/ArchiSteamFarm/ArchiSteamFarm\@.service .
,這將建立一個指向我們服務聲明的符號連結,並於systemd
中註冊。 符號連結可以使ASF在更新時自動更新您的systemd
單元──依據您的情形,您可能想要使用該方法,或使用cp
複製檔案並自行管理。
然後,確保systemd
能辨識我們的服務:
systemctl status ArchiSteamFarm@asf
○ [email protected] - ArchiSteamFarm Service (on asf)
Loaded: loaded (/etc/systemd/system/[email protected]; disabled; vendor preset: enabled)
Active: inactive (dead)
Docs: https://github.com/JustArchiNET/ArchiSteamFarm/wiki
請特別注意我們在@
後宣告的使用者,在範例中是asf
。 我們的systemd服務單元要求您宣告使用者,因為這會影響/home/<user>/ArchiSteamFarm
二進制檔案的實際位置,及systemd生成程序的實際使用者。
若systemd回傳輸出與上述相似,則一切正常,我們就快完成了。 現在,剩下的步驟就是以我們所選的使用者實際啟動服務:systemctl start ArchiSteamFarm@asf
。 等待一下,您就可以再次檢查狀態:
systemctl status ArchiSteamFarm@asf
● [email protected] - ArchiSteamFarm Service (on asf)
Loaded: loaded (/etc/systemd/system/[email protected]; disabled; vendor preset: enabled)
Active: active (running) since (...)
Docs: https://github.com/JustArchiNET/ArchiSteamFarm/wiki
Main PID: (...)
(...)
若systemd
的狀態為active (running)
,代表一切正常,您可以透過例如journalctl -r
來驗證ASF程序已啟動並執行中,因為ASF預設輸出至控制台,會被systemd
記錄。 若您滿意現在的設定,就能執行systemctl enable ArchiSteamFarm@asf
命令,告訴systemd
在啟動期間自動啟動您的服務。 這樣就完成了。
若您想停止程序,只需執行systemctl stop ArchiSteamFarm@asf
。 同樣地,若您想要停用ASF自啟動,就執行systemctl disable ArchiSteamFarm@asf
,非常簡單。
請注意,由於我們的systemd
服務沒有啟用標準輸入,故您無法使用平常的方式來透過控制台輸入資訊。 透過systemd
執行,等同於指定Headless: true
設定。 幸運的是,若您需要在登入期間提供額外資訊,或更好地管理您的ASF程序,我們建議您使用ASF-ui,能夠容易地管理您的ASF。
可以為我們的systemd
服務提供額外的環境變數,例如您想要使用自訂的--cryptkey
命令列引數,就要指定ASF_CRYPTKEY
環境變數。
若要提供自訂環境變數,使用mkdir -p /etc/asf
來建立/etc/asf
資料夾(若其不存在)。 我們建議使用chmod 700 /etc/asf
,來確保只有root
使用者能夠存取這些檔案,因為它們可能含有機密屬性,例如ASF_CRYPTKEY
。 然後,編輯/etc/asf/<user>
檔案,其中<user>
代表您要執行服務的使用者(在上述範例中是asf
,因此是/etc/asf/asf
)。
此檔案應該包含所有您要提供給程序的環境變數:
# 只宣告您實際所需的變數
ASF_CRYPTKEY="my_super_important_secret_cryptkey"
ASF_NETWORK_GROUP="my_network_group"
# 及其他任何您想要使用的變數
ASF含有邏輯,驗證自己是否以系統管理員(root
)身分執行。 若設定環境正確,ASF程序的任何操作都不需要執行於Root,因此使用Root執行都被視為不好的方式。 這代表在Windows上,ASF永遠都不應該使用「以系統管理員執行」設定來執行;而在Unix上,ASF應要擁有專用的使用者帳號,或在桌面環境中使用您自己的帳號。
若要了解為什麼我們不鼓勵以Root執行ASF,請參閱Superuser及其他資料。 若您仍不信邪,請自行想像,如果ASF程序在啟動後立刻執行rm -rf /*
命令,您的設備會怎樣。
這代表您錯誤設定了ASF試圖存取的檔案的權限。 您應使用root
帳號(使用su
或sudo -i
),然後執行chown -hR asf:asf /path/to/ASF
命令更正權限。其中,您需將asf:asf
取代成實際執行ASF的使用者,/path/to/ASF
取代成ASF的實際路徑。 若您使用自訂--path
,讓ASF使用者使用不同的資料夾,您還需為此路徑執行一次上述命令。
完成本操作後,您應該不會再遇到任何與ASF無法ASF無法寫入自己的檔案的相關問題,因為您剛剛已將ASF所需檔案的擁有者改成實際執行ASF的使用者。
su # 或是 sudo -i
useradd -m asf
chown -hR asf:asf /path/to/ASF
su asf -c /path/to/ASF/ArchiSteamFarm # 或是 sudo -u asf /path/to/ASF/ArchiSteamFarm
這些是手動啟動,但使用我們上述說明的systemd
服務會更加輕鬆。
從V5.2.0.10版本開始,ASF不再阻止您這樣做,而只是顯示一條簡短的警告。 但如果有一天由於程式錯誤,使它炸毀了您的整個作業系統,並導致資料完全遺失,那就不要感到震驚──您已被警告過了。
ASF相容於同一台設備上執行多個程序實例。 The instances can be completely standalone or derived from the same binary location (in which case, you want to run them with different --path
command-line argument).
When running multiple instances from the same binary, keep in mind that you should typically disable auto-updates in all of their configs, as there is no synchronization between them in regards to auto-updates. If you'd like to keep having auto-updates enabled, we recommend standalone instances, but you can still make updates work, as long as you can ensure that all other ASF instances are closed.
ASF will do its best to maintain a minimum amount of OS-wide, cross-process communication with other ASF instances. This includes ASF checking its configuration directory against other instances, as well as sharing core process-wide limiters configured with *LimiterDelay
global config properties, ensuring that running multiple ASF instances will not cause a possibility to run into a rate-limiting issue. In regards to technical aspects, all platforms use our dedicated mechanism of custom ASF file-based locks created in temporary directory, which is C:\Users\<YourUser>\AppData\Local\Temp\ASF
on Windows, and /tmp/ASF
on Unix.
It's not required for running ASF instances to share the same *LimiterDelay
properties, they can use different values, as each ASF will add its own configured delay to the release time after acquiring the lock. If the configured *LimiterDelay
is set to 0
, ASF instance will entirely skip waiting for the lock of given resource that is shared with other instances (that could potentially still maintain a shared lock with each other). When set to any other value, ASF will properly synchronize with other ASF instances and wait for its turn, then release the lock after configured delay, allowing other instances to continue.
ASF takes into account WebProxy
setting when deciding about shared scope, which means that two ASF instances using different WebProxy
configurations will not share their limiters with each other. This is implemented in order to allow WebProxy
setups to operate without excessive delays, as expected from different network interfaces. This should be good enough for majority of use cases, however, if you have a specific custom setup in which you're e.g. routing requests yourself in a different way, you can specify network group yourself through --network-group
command-line argument, which will allow you to declare ASF group that will be synchronized with this instance. Keep in mind that custom network groups are used exclusively, which means that ASF will no longer use WebProxy
for determining the right group, as you're in charge of grouping in this case.
如果您想使用我們以上針對多個 ASF 實例說明中的 systemd
服務,這非常簡單,只需在我們的 ArchiSteamFarm@
服務聲明中使用另一個用戶,然後執行其餘步驟即可。 This will be equivalent of running multiple ASF instances with distinct binaries, so they can also auto-update and operate independently of each other.