반응형
OpenStack 설치 시 CryptographyDeprecationWarning
OpenStack 설치 중 발생하는 CryptographyDeprecationWarning 메시지 관련하여 조치 방법에 대해 알려드립니다.
cryptography package warning 는 실제 문제를 일으키는 error 는 아닙니다만 자꾸만 발생하는 메시지입니다.
openstack project create --domain default --description "Service Project" service
/usr/lib/python3/dist-packages/secretstorage/dhcrypto.py:15: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead from cryptography.utils import int_from_bytes
/usr/lib/python3/dist-packages/secretstorage/util.py:19: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead from cryptography.utils import int_from_bytes
cryptography 패키지 warning을 없애기 위해 아래와 같이 2개의 명령어를 입력하면 됩니다.
pip3 uninstall matrix-synapse twisted cryptography bcrypt cftp
pip3 install cryptography==3.2
감사합니다.
반응형
'IT > 그 외 IT' 카테고리의 다른 글
[OpenStack] ovs-vsctl vxlan 설정 시 네트워크 설정 (0) | 2023.03.13 |
---|---|
[OpenStack] Unable to create the network. No tenant network is available for allocation. (0) | 2023.03.13 |
[파워포인트] 슬라이드 마다 같은 위치에 그림 붙여 넣기 - 이미지 잘림 방지 (0) | 2022.10.06 |
[VirtualBox] Ubuntu에서 Host-only Adapter IP 설정 하기 (0) | 2022.06.27 |
[OpenStack] 오류:Keystone에 기본 역할 "_member_"를 찾을 수 없습니다 (0) | 2022.06.24 |
댓글