이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Appendix B. Troubleshooting DNF Modules
If DNF modules fails to enable, it can mean an incorrect module is enabled. In that case, you have to resolve dependencies manually as follows. List the enabled modules:
dnf module list --enabled
# dnf module list --enabled
B.1. Ruby 링크 복사링크가 클립보드에 복사되었습니다!
If Ruby module fails to enable, it can mean an incorrect module is enabled. In that case, you have to resolve dependencies manually as follows:
List the enabled modules:
dnf module list --enabled
# dnf module list --enabled
If the Ruby 2.5 module has already been enabled, perform a module reset:
dnf module reset ruby
# dnf module reset ruby
B.2. PostgreSQL 링크 복사링크가 클립보드에 복사되었습니다!
If PostgreSQL module fails to enable, it can mean an incorrect module is enabled. In that case, you have to resolve dependencies manually as follows:
List the enabled modules:
dnf module list --enabled
# dnf module list --enabled
If the PostgreSQL 10 module has already been enabled, perform a module reset:
dnf module reset postgresql
# dnf module reset postgresql
If a database was previously created using PostgreSQL 10, perform an upgrade:
Enable the DNF modules:
dnf module enable satellite:el8
# dnf module enable satellite:el8Copy to Clipboard Copied! Toggle word wrap Toggle overflow Install the PostgreSQL upgrade package:
dnf install postgresql-upgrade
# dnf install postgresql-upgradeCopy to Clipboard Copied! Toggle word wrap Toggle overflow Perform the upgrade:
postgresql-setup --upgrade
# postgresql-setup --upgradeCopy to Clipboard Copied! Toggle word wrap Toggle overflow