Home  >  Article  >  Operation and Maintenance  >  Solve the problem that the command cannot be found under Linux

Solve the problem that the command cannot be found under Linux

王林
王林Original
2020-01-11 11:27:535455browse

Solve the problem that the command cannot be found under Linux

Error reason:

When executing the command, the system will search for it from the system environment variables. If it is found, it will be executed. If it is not found, it will report that the command has not been completed. turn up.

The following uses the command not found error message when executing mysql mysqladmin under Linux as an example to explain the solution.

(Online video tutorial sharing: linux video tutorial)

The solution is as follows:

1. Check the current environment variables of the system

Solve the problem that the command cannot be found under Linux

After the mysql program is installed, when you directly execute mysql or mysqladmin, the system will first look for the command in /usr/bin. If it is not in this directory, of course it will not be found. At this time, we need to create a link file for these unfound commands and link to /usr/bin.

2. Check whether this command exists in the environment variable. The operation is as follows:

Solve the problem that the command cannot be found under Linux

If the command exists in the environment variable, the specific existence will be output. Path, as shown below:

Solve the problem that the command cannot be found under Linux

If it does not exist, it will prompt that the command is not found, as shown below:

Solve the problem that the command cannot be found under Linux

Make a link Before, we must know the full path of this command, such as mysqladmin

3. Find the full path of this command

[root@admin bin]# find / -name mysqladmin

Solve the problem that the command cannot be found under Linux

The results can be seen , there are two places where mysqladmin exists. We don’t need to worry about the first one, that is his original path.

4. The next thing you need to do is to directly link the following path to /usr/bin. The operation is as follows:

[root@admin bin]# ln -s /usr/local/mysql/bin/mysqladmin /usr/bin

After the link is successful, execute this command again and it will be ok.

Solve the problem that the command cannot be found under Linux

Recommended related articles and tutorials: linux tutorial

The above is the detailed content of Solve the problem that the command cannot be found under Linux. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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