diff --git a/docs/en/server/development/application_dev/_toc.yaml b/docs/en/server/development/application_dev/_toc.yaml index 6a00c41db46a6363684d96d892501d9bcb37492e..735e20d349c611c4fe92b14d2562ebd7256f0ab2 100644 --- a/docs/en/server/development/application_dev/_toc.yaml +++ b/docs/en/server/development/application_dev/_toc.yaml @@ -16,5 +16,3 @@ sections: href: ./using_jdk_for_compilation.md - label: Building an RPM Package href: ./building_an_rpm_package.md - - label: Common Issues and Solutions - href: ./faqs_and_solutions.md diff --git a/docs/en/server/development/application_dev/faqs_and_solutions.md b/docs/en/server/development/application_dev/faqs_and_solutions.md deleted file mode 100644 index 9a409dd841557496c2e9132954a2414af79b02c8..0000000000000000000000000000000000000000 --- a/docs/en/server/development/application_dev/faqs_and_solutions.md +++ /dev/null @@ -1,19 +0,0 @@ -# Common Issues and Solutions - -## Issue 1: Self-compilation of Some Applications Depending on the java-devel Package Fails - -### Symptom - -The self-compilation of some applications that depend on java-devel fails when the rpmbuild command is executed. - -### Cause Analysis - -To provide OpenJDK features that are updated and compatible with Java applications, the openEuler provides OpenJDK of multiple versions, such as OpenJDK 1.8.0 and OpenJDK 11. The compilation of some applications depends on the java-devel package. When the java-devel package is installed, the system installs java-11-openjdk of a later version by default. As a result, the compilation of these applications fails. - -### Solution - -You need to run the following command to install java-1.8.0-openjdk and then run the `rpmbuild` command to perform self-compilation: - -```shell -# yum install java-1.8.0-openjdk -``` diff --git a/docs/en/server/performance/cpu_optimization/sysboost/_toc.yaml b/docs/en/server/performance/cpu_optimization/sysboost/_toc.yaml index b690d38071e51b0c60ecc4a1116aabeacc8e646e..1afb39b2abb5e86851d7dfa177b4f279dc70793d 100644 --- a/docs/en/server/performance/cpu_optimization/sysboost/_toc.yaml +++ b/docs/en/server/performance/cpu_optimization/sysboost/_toc.yaml @@ -6,7 +6,7 @@ sections: href: ./sysboost.md sections: - label: Getting to Know sysBoost - href: ./getting_to_know_sysBoost.md + href: ./getting_to_know_sysboost.md - label: Installation and Deployment href: ./installation_and_deployment.md - label: Usage Instructions diff --git a/docs/en/server/performance/cpu_optimization/sysboost/getting_to_know_sysBoost.md b/docs/en/server/performance/cpu_optimization/sysboost/getting_to_know_sysboost.md similarity index 100% rename from docs/en/server/performance/cpu_optimization/sysboost/getting_to_know_sysBoost.md rename to docs/en/server/performance/cpu_optimization/sysboost/getting_to_know_sysboost.md diff --git a/docs/en/server/performance/system_optimization/atune/_toc.yaml b/docs/en/server/performance/system_optimization/atune/_toc.yaml index 571a4d42a188db5071ab40f63511a0e5df89c59a..0de72ab9a1c4129d31ab0fee31db6f3e6cadfd60 100644 --- a/docs/en/server/performance/system_optimization/atune/_toc.yaml +++ b/docs/en/server/performance/system_optimization/atune/_toc.yaml @@ -15,5 +15,3 @@ sections: href: ./native_turbo.md - label: Appendix href: ./appendix.md - - label: Common Issues and Solutions - href: ./faqs_and_solutions.md diff --git a/docs/en/server/performance/system_optimization/atune/faqs_and_solutions.md b/docs/en/server/performance/system_optimization/atune/faqs_and_solutions.md deleted file mode 100644 index 38a9d93493919182e8bcc05f45740b3f50aae64f..0000000000000000000000000000000000000000 --- a/docs/en/server/performance/system_optimization/atune/faqs_and_solutions.md +++ /dev/null @@ -1,52 +0,0 @@ -# Common Issues and Solutions - -## Issue 1: An error occurs when the **train** command is used to train a model, and the message "training data failed" is displayed - -Cause: Only one type of data is collected by using the **collection**command. - -Solution: Collect data of at least two data types for training. - -## Issue 2: atune-adm cannot connect to the atuned service - -Possible cause: - -1. Check whether the atuned service is started and check the atuned listening address. - - ```shell - systemctl status atuned - netstat -nap | grep atuned - ``` - -2. The firewall blocks the atuned listening port. -3. The HTTP proxy is configured in the system. As a result, the connection fails. - -Solution: - -1. If the atuned service is not started, run the following command to start the service: - - ```shell - systemctl start atuned - ``` - -2. Run the following command on the atuned and atune-adm servers to allow the listening port to receive network packets. In the command, **60001** is the listening port number of the atuned server. - - ```shell - iptables -I INPUT -p tcp --dport 60001 -j ACCEPT - iptables -I INPUT -p tcp --sport 60001 -j ACCEPT - ``` - -3. Run the following command to delete the HTTP proxy or disable the HTTP proxy for the listening IP address without affecting services: - - ```shell - no_proxy=$no_proxy, Listening_IP_address - ``` - -## Issue 3: The atuned service cannot be started, and the message "Job for atuned.service failed because a timeout was exceeded." is displayed - -Cause: The hosts file does not contain the localhost information. - -Solution: Add localhost to the line starting with **127.0.0.1** in the **/etc/hosts** file. - -```text -127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 -``` diff --git a/docs/en/server/security/secharden/_toc.yaml b/docs/en/server/security/secharden/_toc.yaml index 5c6c8e51864a0791314637d46529d5c31b4a137b..521880d60694026e4f1e24d54d85566aaceadaa0 100644 --- a/docs/en/server/security/secharden/_toc.yaml +++ b/docs/en/server/security/secharden/_toc.yaml @@ -23,7 +23,7 @@ sections: href: ./selinux_configuration.md - label: Security Hardening Tools href: ./security_hardening_tools.md - - label: Appendix - href: ./appendix.md - label: Security Configuration Hardening Tool href: ./security_configuration_hardening_tool.md + - label: Appendix + href: ./appendix.md \ No newline at end of file diff --git a/docs/zh/server/security/secharden/_toc.yaml b/docs/zh/server/security/secharden/_toc.yaml index 9c0a77dd69944bbf177a9c0359cd2eb0a9f5ec48..669fb3448adab41b39595e5ec824f5cdbbd8c0a3 100644 --- a/docs/zh/server/security/secharden/_toc.yaml +++ b/docs/zh/server/security/secharden/_toc.yaml @@ -23,7 +23,7 @@ sections: href: ./selinux_configuration.md - label: 安全加固工具 href: ./security_hardening_tools.md - - label: 附录 - href: ./appendix.md - label: 安全配置加固工具 href: ./security_configuration_hardening_tool.md + - label: 附录 + href: ./appendix.md