পটভূমি
hostnamectl
সিস্টেমডের অংশ, এবং একটি মানক উপায়ে সার্ভারের হোস্টনাম সেট করার জন্য ডিল করার জন্য একটি উপযুক্ত এপিআই সরবরাহ করে।
$ rpm -qf $(type -P hostnamectl)
systemd-219-57.el7.x86_64
পূর্বে প্রতিটি ডিস্ট্রো যা সিস্টেমেড ব্যবহার করে না, তাদের এটির জন্য নিজস্ব পদ্ধতি ছিল যা প্রচুর অপ্রয়োজনীয় জটিলতার জন্য তৈরি করে।
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.
hostnamectl
বুট করার জন্য একক লোকেশনে প্রচুর স্বতন্ত্র ডেটা একসাথে টানতে:
$ hostnamectl
Static hostname: centos7
Icon name: computer-vm
Chassis: vm
Machine ID: 1ec1e304541e429e8876ba9b8942a14a
Boot ID: 37c39a452464482da8d261f0ee46dfa5
Virtualization: kvm
Operating System: CentOS Linux 7 (Core)
CPE OS Name: cpe:/o:centos:centos:7
Kernel: Linux 3.10.0-693.21.1.el7.x86_64
Architecture: x86-64
তথ্য এখানে থেকে আসছে /etc/*release
, uname -a
সার্ভারের হোস্টনেম সহ, ইত্যাদি।
ফাইল গুলো কি?
ঘটনাচক্রে, সবকিছু এখনও ফাইলে রয়েছে, hostnamectl
কেবল আমাদের কীভাবে এই ফাইলগুলির সাথে ইন্টারেক্ট করতে হবে বা তাদের প্রতিটি অবস্থান জানতে হবে তা সরল করে দিচ্ছে।
এর প্রমাণ হিসাবে আপনি এটি ব্যবহার করতে পারেন strace -s 2000 hostnamectl
এবং এটি থেকে কোন ফাইলটি টানছে তা দেখতে পারেন :
$ strace -s 2000 hostnamectl |& grep ^open | tail -5
open("/lib64/libattr.so.1", O_RDONLY|O_CLOEXEC) = 3
open("/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
open("/proc/self/stat", O_RDONLY|O_CLOEXEC) = 3
open("/etc/machine-id", O_RDONLY|O_NOCTTY|O_CLOEXEC) = 4
open("/proc/sys/kernel/random/boot_id", O_RDONLY|O_NOCTTY|O_CLOEXEC) = 4
systemd হল-hostname.service?
চমকপ্রদ পর্যবেক্ষকের জন্য, আপনার উপরের দিকে লক্ষ্য করা উচিত strace
যে সমস্ত ফাইল উপস্থিত নেই। hostnamectl
আসলে এমন একটি পরিষেবাদির সাথে ইন্টারঅ্যাক্ট করা systemd-hostnamectl.service
যা প্রকৃতপক্ষে বেশিরভাগ অ্যাডমিনদের সাথে পরিচিত এমন বেশিরভাগ ফাইলের সাথে "ইন্টারেক্টিভ" করে /etc/hostname
।
অতএব আপনি চালানোর সময় আপনি hostnamectl
পরিষেবাটি থেকে বিশদটি পান। এটি একটি অনডম্যান্ড সার্ভিস, তাই আপনি সারাক্ষণ চলমান দেখবেন না। শুধুমাত্র যখন hostnamectl
রান। আপনি যদি watch
কমান্ড চালনা করেন তবে এটি দেখতে পাবেন এবং তারপরে hostnamectl
একাধিকবার চালানো শুরু করুন :
$ watch "ps -eaf|grep [h]ostname"
root 3162 1 0 10:35 ? 00:00:00 /usr/lib/systemd/systemd-hostnamed
এর উত্সটি এখানে রয়েছে: https://github.com/systemd/systemd/blob/master/src/hostname/hostname.c এবং যদি আপনি এটি দেখে থাকেন তবে আপনি এর উল্লেখগুলি দেখতে পাবেন /etc/hostname
etc.
তথ্যসূত্র