본문으로 바로가기
반응형

RHEL8.2 Minimall 설치 후 subsription 등록이나 dnf install 명령어를 수행할 때 아래와 같은 에러가 발생한다.

에러가 발생하긴 하지만, 동작은 정상적으로 하긴 하는데 에러가 뜨는게 눈에 걸슬린다면 아래와 같은 방법으로 해결할 수 있다.

 

##

UnicodeEncodeError: 'ascii' codec can't encode characters in position 89-91: ordinal not in range(128)

...

Message: '시스템 DMI 정보를 읽는 도중 오류 발생: %s'
Arguments: ('# SMBIOS implementations newer than version 2.7 are not\n# fully supported by this version of dmidecode.\n\n',)

###

 

 

1. logging error 이슈 

 

2. 해결방법 

[root@ansible-tower ~]# vi /etc/bashrc   맨 하단에 아래 내용 추가 후 저장
...
fi
# vim:ts=4:sw=4

export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
export LC_COLLATE=C
export LC_CTYPE=en_US.UTF-8

[root@ansible-tower ~]# source ~/.bashrc
728x90