亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Home Operation and Maintenance Linux Operation and Maintenance What to do if changing hosts in Linux does not take effect

What to do if changing hosts in Linux does not take effect

Mar 27, 2023 am 10:08 AM
linux hosts

Solution to changing hosts in Linux does not take effect: 1. Find and open the "/etc/sysconfig/network" file; 2. Modify HOSTNAME to the corresponding alias, such as "NETWORKING=yes HOSTNAME=host1"; 3. Restart the network service through the "service network restart" command.

What to do if changing hosts in Linux does not take effect

#The operating environment of this tutorial: linux5.9.8 system, Dell G3 computer.

What should I do if changing hosts in Linux does not take effect?

Linux often fails to take effect after modifying the hostName of the local /etc/hosts

1. Linux often fails to take effect after modifying the hostName of the local alias /etc/hosts Solution for not taking effect

Linux often does not take effect after modifying the hostName of the local alias /etc/hosts.

For example, the content of our /etc/hosts is as follows:

#192.68.1.10 message.xxx.com
192.68.1.11 message.xxx.com

But ping message.xxx.com still points to 192.68.1.10.

Generally there are 2 solutions:

1). Restart, this is the most direct, reliable and stable method. If it is sometimes inconvenient to restart, you can Use the second method.

2). Modify the /etc/sysconfig/network file and change HOSTNAME to the corresponding alias, as follows:

NETWORKING=yes
HOSTNAME=host1

Restart the network service after modification

service network restart (本質(zhì)是/etc/init.d/network)

3). If it still doesn’t work after restarting the server, it may be caused by the local dns cache.

Check whether nscd is enabled: ps -ef|grep nscd

Directly turn off the Linux nscd cache service:

/etc/init.d/nscd stop

2 , DNS of Linux

Linux itself does not have dns cache. If you want to use dns cache, you need to install a service program NSCD (name service cache daemon).

nscd caches three services passwd group hosts, so it will record three libraries, corresponding to the sources /etc/passwd, /etc/hosts and /etc/resolv.conf. Each library saves two caches, one for the records found and one for the records not found. of. Each cache saves a time to live (TTL).

Installation:

  yum install nscd

Modify the configuration file /etc/nscd.conf, enable dns cache, and modify this line

  enable-cache hosts yes。

If the nscd service is enabled, there will be dns cache, otherwise there will be no dns cache.

Start, stop, restart service

     service nscd start | stop | restart

nscd Configuration:

You can enable the local DNS cache by editing the /etc/nscd.conf file and adding the following line:

enable-cache hosts yes

Ali The configuration on the cloud host is as follows:

[root@iZ2571ykq ~]# cat /etc/nscd.conf   
#logfile        /var/log/nscd.log  
threads         6  
max-threads     128  
server-user     nscd  
debug-level     5  
paranoia        no  
enable-cache    passwd      no  
enable-cache    group       no  
enable-cache    hosts       yes  
positive-time-to-live   hosts   5  
negative-time-to-live   hosts       20  
suggested-size  hosts       211  
check-files     hosts       yes  
persistent      hosts       yes  
shared          hosts       yes  
max-db-size     hosts       33554432

The relevant parameters are explained as follows:

logfile debug-file-name : Specify the file name to which debugging information is written.

debug-level value: Set the desired debugging level.

threads number: This is the number of threads started waiting for requests. A minimum of 5 threads will be created.

server-user user: If this option is set, nscd will run as this user, not as root. If each user uses a separate cache (-S parameter), this option will be ignored

enable-cache service : Enable or disable the specified service cache.

positive-time-to-live service value: Set the TTL (time to live) of the service's positive items (successful requests) in the specified cache. Value is in seconds. Larger values ??will increase the cache hit rate and thus reduce the average response time, but will increase cache consistency issues.

negative-time-to-live service value: Set the TTL (time to live) of negative items (failed requests) in the specified cache. Value is in seconds. Performance will be significantly improved if there are files owned by uids that are not in the system database (such as when unpacking Linux kernel sources as root); the value should be kept small to reduce cache consistency issues.

suggested-size service value: This is the size of the internal hash table, value should remain a prime number for optimization.

check-files service : Enable or disable checking for changes in files belonging to the specified service. These files are /etc/passwd, /etc/group, and /etc/hosts.

View and clear nscd

nscd cache DB file is under /var/db/nscd.

nscd -g View statistics

Clear nscd cache:

nscd -i passwd
nscd -i group
nscd -i hosts

Of course, delete the cache library first or stop it nscd service:

rm -f /var/db/nscd/hosts
service nscd restart

Or directly stop the nscd service service nscd stop.

Recommended learning: "linux video tutorial"

The above is the detailed content of What to do if changing hosts in Linux does not take effect. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Experience in participating in VSCode offline technology exchange activities Experience in participating in VSCode offline technology exchange activities May 29, 2025 pm 10:00 PM

I have a lot of experience in participating in VSCode offline technology exchange activities, and my main gains include sharing of plug-in development, practical demonstrations and communication with other developers. 1. Sharing of plug-in development: I learned how to use VSCode's plug-in API to improve development efficiency, such as automatic formatting and static analysis plug-ins. 2. Practical demonstration: I learned how to use VSCode for remote development and realized its flexibility and scalability. 3. Communicate with developers: I have obtained skills to optimize VSCode startup speed, such as reducing the number of plug-ins loaded at startup and managing the plug-in loading order. In short, this event has benefited me a lot and I highly recommend those who are interested in VSCode to participate.

How to limit user resources in Linux? How to configure ulimit? How to limit user resources in Linux? How to configure ulimit? May 29, 2025 pm 11:09 PM

Linux system restricts user resources through the ulimit command to prevent excessive use of resources. 1.ulimit is a built-in shell command that can limit the number of file descriptors (-n), memory size (-v), thread count (-u), etc., which are divided into soft limit (current effective value) and hard limit (maximum upper limit). 2. Use the ulimit command directly for temporary modification, such as ulimit-n2048, but it is only valid for the current session. 3. For permanent effect, you need to modify /etc/security/limits.conf and PAM configuration files, and add sessionrequiredpam_limits.so. 4. The systemd service needs to set Lim in the unit file

Comparison between Informix and MySQL on Linux Comparison between Informix and MySQL on Linux May 29, 2025 pm 11:21 PM

Informix and MySQL are both popular relational database management systems. They perform well in Linux environments and are widely used. The following is a comparison and analysis of the two on the Linux platform: Installing and configuring Informix: Deploying Informix on Linux requires downloading the corresponding installation files, and then completing the installation and configuration process according to the official documentation. MySQL: The installation process of MySQL is relatively simple, and can be easily installed through system package management tools (such as apt or yum), and there are a large number of tutorials and community support on the network for reference. Performance Informix: Informix has excellent performance and

The reasons and solutions for editor crash after VSCode plug-in update The reasons and solutions for editor crash after VSCode plug-in update May 29, 2025 pm 10:03 PM

The reason why the editor crashes after the VSCode plugin is updated is that there is compatibility issues with the plugin with existing versions of VSCode or other plugins. Solutions include: 1. Disable the plug-in to troubleshoot problems one by one; 2. Downgrade the problem plug-in to the previous version; 3. Find alternative plug-ins; 4. Keep VSCode and plug-in updated and conduct sufficient testing; 5. Set up automatic backup function to prevent data loss.

How to adjust mysql into Chinese interface? Easy to set the Chinese language environment of mysql How to adjust mysql into Chinese interface? Easy to set the Chinese language environment of mysql Jun 04, 2025 pm 06:36 PM

To tune MySQL into a Chinese interface, it can be implemented through MySQLWorkbench or command line tools. 1) In MySQLWorkbench, open "Preferences", select the "Appearance" tab, and then select "Chinese(Simplified)" in the "Language" drop-down menu, and restart. 2) When using command line tools, set the operating system locale variables, such as using "exportLANG=zh_CN.UTF-8" on Linux or macOS, and then run the mysql client.

How to compare Debian Notepad with other editors How to compare Debian Notepad with other editors May 29, 2025 pm 10:42 PM

Debian Text Editor is a basic text editing tool, mainly used for daily simple text editing work. Compared with other mainstream editors, it has certain limitations in performance and user experience. Here are the advantages and features of several other editors compared to Debian text editors: Notepad Loading large files speed: Notepad can quickly load large files, such as 1GB-sized SQL files in just 8 seconds, which is nearly 47 times faster than standard text editors. Code coloring function: Supports code coloring in about 80 programming languages, which helps improve coding efficiency. Batch operation capability: It has column editing mode, which is convenient for performing batch processing tasks such as financial verification or operation and maintenance logs. Extension plug-in branch

How to start SFTP service on Debian How to start SFTP service on Debian May 29, 2025 pm 10:51 PM

Starting SFTP service in Debian systems usually requires the help of an OpenSSH server. The following are the specific steps: 1. Install the OpenSSH server First, confirm that the OpenSSH server is installed on your Debian system. If not installed, you can complete the installation by following command: sudoaptupdatesudoaptininstallopenssh-server2. After starting the OpenSSH server installation is completed, the OpenSSH server will generally start automatically. You can check its running status through the following command: sudosystemctlstatusssh If the service is not running, you can start it with the following command: s

How does resource usage (CPU, memory) differ between Linux and Windows? How does resource usage (CPU, memory) differ between Linux and Windows? Jun 05, 2025 am 12:13 AM

Linux and Windows have their own advantages and disadvantages in CPU and memory usage: 1) Linux uses time slice-based scheduling algorithms to ensure fairness and efficiency; Windows uses priority scheduling, which may cause low-priority processes to wait. 2) Linux manages memory through paging and switching mechanisms to reduce fragmentation; Windows tends to pre-allocate and dynamic adjustment, and efficiency may fluctuate.

See all articles