Character set error always exists
background The company has a Jenkins server. Due to historical reasons, it has been using CentOS 6.5. Suddenly, when logging in, it prompted that there was a problem with the character set. I have actually been using CentOS 7 for a long time and have never encountered such a problem. I was also confused during the troubleshooting process. There were various character set errors and invalid settings. After n days of continuous investigation, I found that it was caused by glibc. During the process of shooting the error, I also found that version 2.15 could not be used. Damn it, I quickly made a note of it. Troubleshooting process 1. The direct response was the character set. I checked multiple documents on Baidu, various configurations, and various update plug-ins, but they didn't work. In addition, I had other work at hand, which delayed it for several days. I thought about it carefully today. Since no character set is effective, it should not be a character set problem. There must be a problem in the loading process. However, the server has not done any work in the past few days. I was bored and browsed Baidu. Suddenly I saw a post related to glibc. Then I continued to search Baidu. There are really other guys who have encountered similar problems. They said that make localedata/install-locales should be added during compilation. After understanding the solution, I tried it immediately. 2. The system default is 2.12. I upgraded to 2.14 because of some plug-in requirements. I originally wanted to downgrade to 2.12, but then I thought, why not download 2.15 and recompile, theoretically all the problems should be solved. 3. Find glibc-2.15 resources online, download, compile, and install. After routine operations, point the /lib64/libc.so.6 soft link to glibc-2.15. Then the error Illegal instruction (core dumped) is reported again, and the system cannot log in. Quickly repair LD_PRELOAD=/lib64/libc-2.12.so ln -sf /lib64/libc-2.12.so /lib64/libc.so.6 and downgrade to 2.12 first. At least the character set problem is solved, but this doesn’t work. After many attempts to upgrade to 2.15, it finally failed, and no relevant solution was found on the Internet. 4. I had no choice but to think it might be a system compatibility issue. I didn’t give up and tried to upgrade to 2.17 again. I still operated normally and this time it finally worked. . . Specific process 1. Check the system glibc version library strings /lib64/libc.so.6 |grep GLIBC_ I found that the highest is 2.12, and I am going to upgrade to 2.17. Don't install 2.15. I don't know if it's my fault, but I can't install it anyway. 2. Download and install Enter the download directory/data/install and execute the command. I won’t explain the details. You will understand.
3. Verification strings /lib64/libc.so.6 | grep GLIBC There is no need to replace the /lib64/libc.so.6 file, and the file soft link already points to glibc-2.17, and you are done. The above are all relevant knowledge points. We hope that the content we have compiled can help everyone. You may also be interested in:
|
<<: How to restore a database and a table from a MySQL full database backup
>>: Implementation of Vue large file upload and breakpoint resumable upload
Here is a common one-click performance test scrip...
This article uses an example to illustrate how to...
Some fault code tables use the following design p...
WeChat Mini Program - QR Code Generator Download:...
A CSS layout and style question: how to balance h...
In the past, it was quite troublesome to achieve ...
1. Docker imports local images Sometimes we copy ...
Table of contents What is Docker Compose Requirem...
Underlining in HTML used to be a matter of enclos...
Copy code The code is as follows: <!DOCTYPE ht...
<html> <head> <meta http-equiv=&quo...
This article example shares the specific code of ...
Table of contents 1. Introduction: 2. The first i...
1. Create the tomcat installation path mkdir /usr...
For reference only for Python developers using Ub...