Linux 472

Serv-U upgrade & backup

Serv-U upgrade 하기 전에 백업을 진행 해야 한다. 혹시 모르니깐 백업은 일반적으로 Serv-U 설치 폴더에 데이터가 다 들어 있어서 해당 폴더를 백업 하면 된다. 리눅스는 /usr/local/Serv-U 폴더가 기본 설치 폴더이다. # cd /usr/local/ # scp -r Serv-U/ Serv-U_backup 백업이 완료 되면 https://customerportal.solarwinds.com/v2/downloads Customer Portal | SolarWinds customerportal.solarwinds.com 최신 버전을 다운 받아서 구동 서버에 복사를 하자 그리고 Serv-U 서비스 종료 # service Serv-U stop Serv-U is stopping... Ser..

Linux 2022.09.29

docker run --name docker-registry -d -p 5000:5000 registry/usr/bin/docker-current: Error response from daemon: error creating overlay mount to /var/lib/docker/overlay2/b626916dfce1fe21ac8e331b7e35a23b51c804f698069008df4380f871e3c6a2-init/merged: invalid a

docker run --name docker-registry -d -p 5000:5000 registry /usr/bin/docker-current: Error response from daemon: error creating overlay mount to /var/lib/docker/overlay2/b626916dfce1fe21ac8e331b7e35a23b51c804f698069008df4380f871e3c6a2-init/merged: invalid argument. 위와 같이 에러가 발생을 한다면 서비스 종료 # systemctl stop docker docker 데이터 삭제 # rm -rf /var/lib/docker 변수 지정 # vi /etc/sysconfig/docker-storage DOCK..

Linux 2022.09.24

docker lmgrd server 구축하기

docker lmgrd server 구축하기 디자인툴이나 여러 업체들이 Network License Manage(LMTOOLS) 를 많이 이용한다. 내부에 구축을 하기 위해서 서버하나는 만들어서 구축을 해야 하는데 docker 를 이용하면 장비 하나를 줄일 수 있다. LMTOOLS 를 구동 하기 위해서 몇몇 패키지가 필요 하다. 필요 패키지는 아래에.. OS 를 Centos7 으로 한다. Centos8 같은 경우는 지원이 안된다. # docker run -it --privileged --name lmgrd_server centos:7 이미지 다운 받고 설치가 완료 된다. Centos7 깡통이라 필수 패키지 설치 해주자. # yum install -y redhat-lsb # yum install -y gc..

Linux 2022.09.21

The disk contains an unclean file system (0, 0).Metadata kept in Windows cache, refused to mount.Falling back to read-only mount because the NTFS partition is in anunsafe state. Please resume and shutdown Windows fully (no hibernationor fast restarting.)C

ntfs 마운트 할 경우 The disk contains an unclean file system (0, 0). Metadata kept in Windows cache, refused to mount. Falling back to read-only mount because the NTFS partition is in an unsafe state. Please resume and shutdown Windows fully (no hibernation or fast restarting.) Could not mount read-write, trying read-only 위와 같이 메세지 뜨면서 read-only 로 mount 가 되어서 touch 1 touch: cannot touch ‘1’: Read-only..

Linux 2022.08.28

500 OOPS: vsftpd: refusing to run with writable root inside chroot()

500 OOPS: vsftpd: refusing to run with writable root inside chroot() vsftp 설치 후 접속을 하려 하면 위와 같이 에러 발생한다. 문제 해결 방법은 # vi /etc/vsftpd/vsftpd.conf allow_writeable_chroot=YES 코드를 추가 해주고 service firewalld restart 서비스 재시작 해주면 된다. 혹시 이렇게 해도 안된다면 계정 생성한 폴더에 권한을 줘야 한다. 만약에 계정을 test 로 만들었다면 # chmod 555 /home/test 해주면 된다. 접속을 시도 해보면 정상적으로 접속 되는것을 확인 할 수 있다.

Linux 2022.07.07

Can't locate Switch.pm in @INC (you may need to install the Switch module) (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5)

centos8 에서 build Can't locate Switch.pm in @INC (you may need to install the Switch module) (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5) 위와 같이 에러가 뜬다면 perl 5.14 이후인가 switch module 이 기본 패키지에 빠져서 그렇다 추가로 설치 해주면 된다. Centos 계열은 yum install perl-Switch ubuntu 계열은 apt-get install libswitch-per..

Linux 2022.04.18

/usr/bin/sh^M: bad interpreter: No such file or directory

스크립트를 만들어서 구동을 했더니 ./new.sh -bash: ./new1.sh: /usr/bin/sh^M: bad interpreter: No such file or directory 위와 같이 에러가 발생이 된다. vi new.sh #!/usr/bin/sh cd / mkdir test1 mkdir test2 mkdir test3 이렇게 밖에 없는데 뭐지..? 윈도우 메모장으로 파일을 수정한걸 리눅스에서 실행 할때 흔이 나타나는 에러 이다. vi -b new.sh 로 파일을 열어보면 #!/usr/bin/sh^M cd /^M mkdir test1^M mkdir test2^M mkdir test3^M 이렇게 있는걸 확인 할 수 있다. 뒤에 ^M 을 삭제를 해야 한다. 삭제 하는 방법은 sed -i -e '..

Linux 2022.04.17
728x90
320x100