반응형

Error code 모음/3. Linux Errors 14

[Linux Error] end kernel panic - not syncing 이슈 해결

- cpu 를 1개로 설정할 것은 processors 에서 cpu 를 2개로 설정하니 해결함 - 아래 링크 참고 해서 해결할 것 https://sosopro.tistory.com/190 [버추얼박스] 우분투 설치실패 kernel panic not syncing 버추얼박스에 우분투를 설치하는데 아래와 같은 에러메세지가 발생해서 설치가 안되는 경우 해결방법입니다. kernel panic not syncing : Attempted to kill the idle task. I got this error while plugging Ubuntu virtual ma sosopro.tistory.com

[Linux Error] Another app is currently holding the yum lock; waiting for it to exit...

1. 원인 현재 yum 에서 특정 프로세스를 사용하고 있어서 나타나는 에러 2. 해결 방법 아래 참고 링크의 2번을 참고하여 yum.pid 파일을 제거함 3. 참고 링크 https://bono915.tistory.com/entry/Linux-%EB%A6%AC%EB%88%85%EC%8A%A4-yum-%EC%98%A4%EB%A5%98-Another-app-is-currently-holding-the-yum-lock-waiting-for-it-to-exit. [Linux] 리눅스 yum 오류 Another app is currently holding the yum lock; waiting for it to exit... 리눅스(Linux)에서 yum을 실행하다 보면 아래 그림과 같은 오류가 날때가 있습니다. ..

[Linux Error] remote SFTP file transfer fails: Permission Denied

1. 에러의 원인 해당 에러의 경우, 로컬에서 작업을 하였을 경우 파일을 저장할 때 주로 발생하는 에러 나의 경우에는 intellij 에서 sftp 파일을 편집하려고 했을 때 발생함 권한 부분만 해결하면 되는 에러 2. 해결 방법 해결방법은 의외로 간단했다. $ sudo chmod -R 777 ./folder 777 권한을 다 주기는 뭐해서.. 시간이 될 때 권한 테스트를 하면서 최소한으로 열수 있는 권한을 파악해야겠다. 파이참에서도 위 방법으로 해결이 가능한 것 같다 3. 참고 링크 https://data-newbie.tistory.com/502 Pycharm remote SFTP file transfer fails: Permission Denied 및 Failed to change timestamp ..

[Linux Error] jenkins 설치 에러 : jenkins requires daemonize

1. 에러 원인 아마존 ec2 리눅스의 경우 jenkins 설치에 필요한 demonize 라는 모듈이 없어 발생한 에러이다. 2. 해결 방법 아마존 ec2 이므로 아래의 명령어를 참고해서 해결했다. $> sudo amazon-linux-extras install epel -y $> sudo yum update -y # 나의 경우에는 이미 java 를 설치했으므로 java 는 설치하지 않았다 $> sudo yum install jenkins java-1.8.0-openjdk-devel 아마존 ec2 에서 주로 발생하는 문제같다. epel 을 설치한 후 yum update 를 통해 demonize 를 설치하면 jenkins 설치 성공 3. 참고 링크 https://stackoverflow.com/questi..

[Linux Error] Failed to restart network.service: Unit network.service not found

Failed to restart network.service: Unit network.service not found 1. 에러 원인 Cent OS 에서 network 라는 서비스를 찾을 수 없을 때 발생하는 에러이다. 주로 Cent OS 8 버전 이상에서 많이 발생한다 (Rocky Linux 를 사용하고 있다면 동일한 에러가 발생할 것이다) 왜냐하면 Centos 8 버전 부터는 Network라는 서비스 명칭 대신 NetworkManager 라는 명칭으로 사용 가능하다고 나와있기 때문 2. 해결방법 나의 경우에는 아래의 명령어로 해결 # Systemctl restart NetworkManage 3. 참고 링크 https://www.golinuxcloud.com/unit-network-service-not..

[Linux Error] cd permission denied

1. 에러 원인 권한문제 때문이다. 보통 리눅스는 보안상의 이유로 root 권한 이외의 계정들은 특정 경로나 파일에 접근이 제한되어 있다. 2. 해결 방법 1) 우선 확인하고자 하는 경로가 있는 상위경로에 들어가서 ls -al 을 사용하여 확인하고자 하는 경로의 권한 확인 2) 그 다음 아래의 명령어로 경로의 권한 변경 sudo chmod 755 [경로] 여기서 sudo 를 통해 root 권한을 사용하여 특정 경로에 권한을 변경하는 것이다. 숫자는 자신이 원하는 숫자를 입력하면 된다. 숫자에 대한 것과 해당 명령어에 대한 자세한 설명은 아래링크를 참고하면 좋을 것 같다 3. 참고 링크 jjackq.tistory.com/98 리눅스(3), 권한설정 이번엔 권한설정에 대해 배워 보도록 하겠습니다. 원래 오늘..

[Nginx Error] (13: Permission denied) while connecting to upstream:[nginx]

1. 에러의 원인 nginx 를 실행하기에 앞서 보안관련 설정이 미흡한 경우 발생, 흔히 리눅스에서 외부 보안을 책임지느 selinux 에 보안 연결이 설정이 안되어 잇을 경우 발생 2. 해결 방법 아래와 같은 명령어를 입력해주면 된다. 두개중 하나를 골라쓰면된다. 나는 2번째 것을 사용했다 # 1번째 setsebool -P httpd_can_network_connect 1 # 2번째 setsebool -P httpd_can_network_connect on 3. 참고 링크 stackoverflow.com/questions/23948527/13-permission-denied-while-connecting-to-upstreamnginx (13: Permission denied) while connecti..

Linux error : Another app is currently holding the yum lock; 에러

리눅스 서버에서 yum install 및 remove 를 하는 경우 종종 아래 의 메시지가 나온다.. Another app is currently holding the yum lock; 그리고 계속 같은 말만 반복... 이럴 경우에는 이 명령어를 사용한다 [root@node1 ~]#rm -rf /var/run/yum.pid 해결이 가능하다 아래 링크를 통해 해결할 수 있다. https://tisiphone.tistory.com/230 [YUM] Another app is currently holding the yum lock; 에러발생 시 조치방법 [YUM] Another app is currently holding the yum lock; 에러발생 시 조치방법 리눅스 서버에서 yum update 및 i..

반응형