How to solve the problem of command failure caused by overwriting the original PATH and prompting command not found

How to solve the problem of command failure caused by overwriting the original PATH and prompting command not found

A colleague asked me to help him figure out why many commands on his LINUX server could not be used, with the prompt (command not found). What was even worse was that many system services and scripts could not be run. Let me ask you, what have you done before? He said that I did the same operation, just added export PATH in the /etc/profile file, and asked, how did you set it? The answer is:

[root@localhost ~]# vim /etc/profile 
export PATH=/usr/lib/jenkins/
[root@localhost ~]# source /etc/profile

He said that he just added the default working directory of Jenkins and then used source to make the configuration file effective. In fact, this is exactly where the problem lies!

PATH is the system environment path. All system commands and script executions are searched according to the PATH path. But if export PATH=/usr/lib/jenkins/ , all the directories set by the system before, such as (/bin/; /sbin and other directories storing system commands), will be overwritten and become jenkins work commands. System commands such as ls, pwd, cd will definitely not be found in the jenkins directory. As a result, all commands, scripts, and services will not be able to run. This is the main reason for this bloody incident!

How to set the real system PATH?

If it is a short-term setting:

export PATH=$PATH:/usr/lib/jenkins/

If it is a long-term setting:

[root@localhost ~]# vim /etc/profile 
export PATH=$PATH:/usr/lib/jenkins/
[root@localhost ~]# source /etc/profile

In this case, the new search path is added to the original setting without overwriting the original PATH.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Linux uses join -a1 to merge two files
  • How to deal with the prompt "Operation not permitted" when deleting files in Linux
  • Linux shell command counts the value of a column after deduplication
  • Tips for viewing History records and adding timestamps in Linux
  • Several ways to run Python programs in the Linux background
  • Creating and executing Linux shell scripts
  • Python uses paramiko to operate Linux
  • Steps to transfer files and folders between two Linux servers
  • Android's implementation method of executing shell scripts in the Linux terminal to directly print the log of the currently running app
  • Use of Zabbix Api in Linux shell environment

<<:  Detailed explanation of CocosCreator Huarongdao digital puzzle

>>:  How to quickly delete all tables in MySQL without deleting the database

Recommend

How to avoid duplication of data when inserting in MySql batch

Table of contents Preface 1. insert ignore into 2...

Share 13 excellent web wireframe design and production tools

When you start working on a project, it’s importa...

Specific use of CSS front-end page rendering optimization attribute will-change

Preface When scroll events such as scroll and res...

How to clean up the disk space occupied by Docker

Docker takes up a lot of space. Whenever we run c...

Why the table file size remains unchanged after deleting data in MySQL

For databases that have been running for a long t...

MySQL uses init-connect to increase the implementation of access audit function

The mysql connection must first be initialized th...

A brief analysis of the matching priority of Nginx configuration location

Preface The location in the server block in the N...

Implementation of React configuration sub-routing

1. The component First.js has subcomponents: impo...

Four categories of CSS selectors: basic, combination, attribute, pseudo-class

What is a selector? The role of the selector is t...

JavaScript history object explained

Table of contents 1. Route navigation 2. History ...

Two ways to install Python3 on Linux servers

First method Alibaba Cloud and Baidu Cloud server...

How to modify the default storage engine in MySQL

mysql storage engine: The MySQL server adopts a m...