Lệnh để đặt tên máy chủ là chắc chắn , hostnamectl
.
root ~ # hostnamectl set-hostname --static "YOUR-HOSTNAME-HERE"
Đây là một nguồn bổ sung mô tả chức năng này nhiều hơn một chút, có tiêu đề: Đặt chính xác tên máy chủ - Fedora 20 trên Amazon EC2 .
Ngoài ra, trang man cho hostnamectl
:
HOSTNAMECTL(1) hostnamectl HOSTNAMECTL(1)
NAME
hostnamectl - Control the system hostname
SYNOPSIS
hostnamectl [OPTIONS...] {COMMAND}
DESCRIPTION
hostnamectl may be used to query and change the system hostname and
related settings.
This tool distinguishes three different hostnames: the high-level
"pretty" hostname which might include all kinds of special characters
(e.g. "Lennart's Laptop"), the static hostname which is used to
initialize the kernel hostname at boot (e.g. "lennarts-laptop"), and
the transient hostname which is a default received from network
configuration. If a static hostname is set, and is valid (something
other than localhost), then the transient hostname is not used.
Note that the pretty hostname has little restrictions on the characters
used, while the static and transient hostnames are limited to the
usually accepted characters of Internet domain names.
The static hostname is stored in /etc/hostname, see hostname(5) for
more information. The pretty hostname, chassis type, and icon name are
stored in /etc/machine-info, see machine-info(5).
Use systemd-firstboot(1) to initialize the system host name for mounted
(but not booted) system images.
Có một lỗi trong Fedora 21, trong đó SELinux ngăn chặn truy cập hostnamectl, được tìm thấy ở đây, có tiêu đề: Bug 1133368 - SELinux đang ngăn chặn systemd-hostnam truy cập 'unlink' trên tên máy chủ tệp .
Lỗi này dường như có liên quan. Có một vấn đề với bối cảnh SELinux không được áp dụng đúng cho tệp /etc/hostname
khi cài đặt. Biểu hiện này trong công cụ hostnamectl
không thể thao tác với tệp /etc/hostname
. Cùng một chủ đề cung cấp cách giải quyết này:
$sudo restorecon -v /etc/hostname
LƯU Ý: Các bản vá đó đã được áp dụng cho Anaconda (công cụ cài đặt) để vấn đề này sẽ biến mất trong tương lai cho người dùng mới.