MySQL의 이상한 설치 문제 (로거 : 명령을 찾을 수 없음)


8

이 문제는 정말 이상합니다. 해결하기 위해 여러 가지 방법을 시도했지만 아무 효과가 없습니다. 내 마지막 출력은 다음과 같습니다

    Reading package lists... Done
    Building dependency tree       
    Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = "pl_PL.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
Setting up mysql-server-5.5 (5.5.38-0ubuntu0.14.04.1) ...
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
/var/lib/dpkg/info/mysql-server-5.5.postinst: line 146: logger: command not found
ATTENTION: An error has occured. More info is in the syslog!
/var/lib/dpkg/info/mysql-server-5.5.postinst: line 236: logger: command not found
dpkg: error processing package mysql-server-5.5 (--configure):
subprocess installed post-installation script returned error exit status 127
dpkg: dependency problems prevent configuration of mysql-server:
mysql-server depends on mysql-server-5.5; however:
Package mysql-server-5.5 is not configured yet.

dpkg: error processing package mysql-server (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
mysql-server-5.5
mysql-server
E: Sub-process /usr/bin/dpkg returned an error code (1)

나는 정말로 그것을 고치는 방법을 모른다. 남자들은 나를 도와주세요 :)


답변:


24

mysql-server-5.6과 동일한 문제가 있었고이 솔루션이 도움이되었습니다.

런치 패드 : 버그 # 392051 : [Karmic] 로거 명령을 찾을 수 없습니다

기본적으로 프로그램 logger이 엉망이되었습니다.

패키지를 다시 설치하여 다시 만들 수 있습니다 bsdutils.

apt-get --reinstall install bsdutils

또는

aptitude reinstall bsdutils


이것은 또한 나를 위해 일했습니다. Hosting24에서 VPS 사용
Stephan Bijzitter

1

"로케일"이 아직 생성되지 않았거나 제대로 설정되지 않았습니다.

이 시도:

sudo locale-gen en_US en_US.UTF-8 pl_PL pl_PL.UTF-8
sudo dpkg-reconfigure locales

그런 다음 MySQL을 다시 설치하십시오.


1

이 블록에서 참조한 원래 답변입니다.

https://smyl.es/how-to-fix-ubuntudebian-apt-get-404-not-found-package-repository-errors-saucy-raring-quantal-oneiric-natty/

로케일 업데이트 :

sudo locale-gen fi_FI.UTF-8
sudo dpkg-reconfigure locales
apt-get update

아래에서이 명령을 실행하십시오

서버에서 모든 archive.ubuntu.comsecurity.ubuntu.com패키지 저장소 URL을 old-releases.ubuntu.com

sudo sed -i -e 's/us.old-releases.ubuntu.com\|security.ubuntu.com/old-releases.ubuntu.com/g'/etc/apt/sources.list

sudo sed -i -e 's/archive.ubuntu.com\|security.ubuntu.com/old-releases.ubuntu.com/g'/etc/apt/sources.list

apt-get update
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.