반응형

Linux 439

GITLAB Logo 변경 및 메세지 변경 방법

gitlab log 변경할 예정이다. 위 경로에 가면 setting - Appearance 에 가면 Navigation bar 에 이미지를 넣으면 변경이 된다. 추가로 system header and footer 에 메세지를 입력을 하면 이렇게 상단 하단에 메세지가 들어가고 로고도 변경된것을 확인 할수 있다. 이제 로그인 페이지를 변경 해보자. 똑같은 setting - Appearance 에 가보면 위와 같이 sign in / sign up pages 설정이 있다 여기를 수정 해주면 된다. 수정이 되었다. 추가로 General Sign-in text 에 text 를 입력하면 이렇게 웰컴 메세지를 쓸수 있다.

Linux 2023.08.26

gitlab 502 error unix:/var/opt/gitlab/gitlab-workhorse/sockets/socket failed (2: No such file or directory)

https://algo79.tistory.com/638 gitlab install # yum install curl policycoreutils openssh-server openssh-clients -y # systemctl enable sshd # systemctl start sshd # yum install postfix # systemctl enable postfix # systemctl start postfix # firewall-cmd --permanent --add-service=http # firewall-cmd --pe algo79.tistory.com 오랜만에 gitlab 설치를 했다 기존에 내가 했던 방식으로 설치를 했는데.. 위와 같이 에러가 발생 한다;;; 응... 뭐지..? # ..

Linux 2023.08.10

The size of this disk is 153.7 TiB (168959982698496 bytes). DOS partition table format cannot be used on drives for volumes larger than 2199023255040 bytes for 512-byte sectors. Use GUID partition table format (GPT)

The size of this disk is 153.7 TiB (168959982698496 bytes). DOS partition table format cannot be used on drives for volumes larger than 2199023255040 bytes for 512-byte sectors. Use GUID partition table format (GPT) 고용량 하드 Raid 로 구성을 했는데 Partition Table: GPT 방식으로 만들어야 한다 안그러면 인식이 안된다. # parted /dev/sdb GNU Parted 3.2 Using /dev/sdb Welcome to GNU Parted! Type 'help' to view a list of commands. (..

Linux 2023.08.09

internal error: unable to execute QEMU command 'blockdev-add': 'file' driver requires '/data/' to be a regular file

kvm 데이터 mount 하기 internal error: unable to execute QEMU command 'blockdev-add': 'file' driver requires '/data/' to be a regular file 하드를 추가 하려고 하는데 저렇게 에러가 뜬다. 이럴 경우 가상화 장비에 # yum install virt-install virt-viewer 설치 # chkconfig libvirtd on # serivce libvirtd restart 설정 해주고 장비 끈다음에 추가 하면 정상적으로 하드가 마운트가 된다.

Linux 2023.07.30

avahi-daemon[]: Invalid response packet from host

리눅스 시스템에 avahi-daemon[]: Invalid response packet from host 로그가 찍히는 경우가 간혹 있다. 이 로그는..? 즉 네트워크 프린터나 공유파일등 자신의 서비스를 알리거나 찾는데 쓰는 프로토콜이다. 고로 syslog 에 위와 같이 찍히는게 싫다면 # vi /etc/rsyslog.conf 열어서 *.info;mail.none;authpriv.none;cron.none /var/log/messages 이부분에 *.info;mail.none;authpriv.none;cron.none;avahi-daemon.none /var/log/messages 를 추가하고 # service rsyslog restart 해주면 로그가 안찍힌다.

Linux 2023.07.18

KVM(가상화) install on rocky8.x

KVM 가상화 시스템을 rocky 8.x 에 설치 하는 방법이다. 우선 intel은 vmx AMD는 svm 이 활성화 되있어야 한다. cmos 에서 설정을 확인 해야 한다. 난 AMD 환경이라 # grep -e 'svm' /proc/cpuinfo #AMD systems flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf pni pclmulqdq monitor sss..

Linux 2023.06.27

detected a mentor license server that was not installed by the siemens license server installer stop the server and uninstall the service before running the siemens license server installer

EDA Tool 인 mentor 설치시 Detected a mentor license server that was not installed by the siemens license server installer stop the server and uninstall the service before running the siemens license server installer 위와 같이 에러가 발생을 한다면 툴 라이선스 서버가 구동중이여서 그렇다. # ps -ef | grep lmgrd 툴이 구동되는것을 죽이고 다시 구동을 하면 정상적으로 설치가 된다.

Linux 2023.04.24

Centos8/Redhat8 응급모드 들어가기 루트 암호 잃어버렸을때 복구하기

centos8/redhat8 응급모드 들어가기 루트 암호 잊어버렸을때 복구하기 방법이다. 우선 응급모드 들어가기 부팅이 정상적으로 안될때 응급모드로 들어가는 방법이다. 부팅 후 kernel 선택 화면에서 e 를 눌러보자. systemd.unit=emergency.target 입력후 Ctrl + x 누르면 부팅이 진행 되고 root 암호 입력해서 작업 해주면 된다. root 암호 잃어버렸을때는 커널 선택 화면에 똑같이 e를 눌러서 맨뒤에 rd.break 를 입력 해주면 암호 없이 부팅이 된다. 그뒤로 mount -o remount,rw /sysroot LANG=C (한글이 깨지면 입력) 입력후 chroot /sysroot passwd root 암호 변경 해주고 touch /.autorelabel (SEli..

Linux 2023.04.09

openmpi 사용법 (Open MPI:Open Source High Performance Computing)

openmpi 설치 방법 Open MPI:Open Source High Performance Computing master PC 하나 slave PC 하나 총 2개 장비를 셋팅을 하자. master PC 에도 키를 우선 만들자. $ ssh-keygen -t rsa -P "" Generating public/private rsa key pair. Enter file in which to save the key (/home/sim716/.ssh/id_rsa): /home/test6/.ssh/id_rsa already exists. Overwrite (y/n)? y Your identification has been saved in /home/test6/.ssh/id_rsa. Your public key ha..

Linux 2023.03.09
728x90
반응형