ssl 인증서 교체시 httpd 실행불가

고객사 ssl 인증서 교체 작업 도중 httpd.service 가 실행되지 않는 이슈가 발생되었다. [root@localhost ~]# systemctl restart httpd job for httpd.service failed. see “systemctl status httpd.service” and “journalctl -xe” for details. 해당 스크린샷에서 systemctl restart httpd 명령어를 실행했을 때 HTTPD 서비스가 실패한 것을 확인할 수 있습니다. 문제의 원인을 파악하기 위해 journalctl -xe 명령어를 사용하여 로그를 확인하라고 … Read more

[linux] rhel8.x network bonding setting

rhel 8.x network bonding 구성 방법 입니다. rhel7 버전 까지는 network-scripts 를 사용하여 구성했지만 rhel8 버전부터는 nmcli 유틸리티를 사용해야 합니다. 레드햇 권고사항 입니다.   vmware(rockylinux 8.10) 버전에서 테스트 진행 하였습니다.   네트워크 확인 # ifconfig # ip a / ip addr   2.  본딩 디바이스 연결 프로파일 생성과 모드 설정 # nmcli connection add type … Read more

# linux 7 최소 설치 후 network 확인 방법 #

linux 7 을 최소 설치 하게되면 이런저런 tool 이 설치되지 않아 불편한 점이 많다 우선 기존에 먹히던 ‘ifconfig’ 로 network 를 확인 할 수 없습니다.   ifconfig -bash: ifconfig: command not found 그럴땐 다른 명령어로 우선 network 를 확인한다 ——————————————————————————– [root@localhost ~]# ip addr list 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN    … Read more

# linux 7 최소 설치 후 network 설정 방법 #

앞서 linux 7 최소 설치 후 network 확인방법에 대해 포스팅 했습니다. 이제 network 설정방법을 설명하겠습니다. 첫번째 방법으로 다음 명령어로 들어가서 설정 해주시면 됩니다. [root@localhost ~]# nmtui 여기서 이더넷 eno167777736 으로 나오는데 vmware 라서 그렇습니다. 보통 eno1 로 나옵니다. ip 설정 후 저장 하시면 됩니다. 그리고 [root@localhost ~]# /etc/init.d/network restart Restarting network (via systemctl):      … Read more

# mysql 패스워드 초기화 방법 #

mysql 실행 mysql -uroot -p   mysql> use mysql 패스워드를 다른걸로 변경할 때  MariaDB [mysql]> update user set password=password(‘변경할 패스워드‘) where user = ‘root’; 패스워드를 초기화 할때 MariaDB [mysql]> update user set password=password(”) where user = ‘root’; (이렇게 암호 제거 한다)   바로 적용 MariaDB [mysql]> flush privileges;

# linux Macaddress (mac 주소) 확인 방법 #

dell 장비로 test 진행 dell 장비는 이더넷 포트 네임이 em1 로 부터 시작한다. [root@localhost ~]# ifconfig -a|grep ^em em1       Link encap:Ethernet  HWaddr 18:66:D  em2       Link encap:Ethernet  HWaddr 18:66:D  em3       Link encap:Ethernet  HWaddr 18:66:D   em4       Link encap:Ethernet  HWaddr 18:66:D   hp 장비 일 경우 하기와 같이 em 을 … Read more

# subnet mask(서브넷 마스크) 비트 별 정리 #

bit  netmask Cisco mask   hosts  usable hosts  Class /4 240.0.0.0 15.255.255.255 268435456 268435454    /5 248.0.0.0 7.255.255.255 134217728 134217726    /6 252.0.0.0 3.255.255.255  67108864 67108862    /7 254.0.0.0 1.255.255.255 33554432 33554430    /8 255.0.0.0 0.255.255.255 16777216 16777214  A Class  /9 255.128.0.0 0.127.255.255 8388608 8388606    /10 255.192.0.0 0.63.255.255 4194304 4194302    /11 255.224.0.0 0.31.255.255 2097152 … Read more

# linux mysql , MariaDB 버전확인 방법 #

  [root@woo ~]# mysql –version mysql  Ver 15.1 Distrib 10.0.30-MariaDB, for Linux (x86_64) using readline 5.1     [root@woo ~]# mysql -uroot -p Enter password:  Welcome to the MariaDB monitor.  Commands end with ; or g. Your MariaDB connection id is 41489 Server version: 10.0.30-MariaDB MariaDB Server   Copyright (c) 2000, 2016, Oracle, MariaDB Corporation … Read more

# 도메인 IP 알아내는 방법 / linux whois #

  [root@woo ~]# rpm -qa|grep whois   jwhois-4.0-19.el6.x86_64   설치가 되어 있는지 확인 후  (저는 설치되어 있습니다.)           먼저 whois 를 설치해 주셔야 합니다.   [root@localhost ~]# yum install jwhois Loaded plugins: fastestmirror, refresh-packagekit, security Setting up Install Process Loading mirror speeds from cached hostfile  * base: ftp.daumkakao.com  * extras: ftp.daumkakao.com … Read more

# linux , Centos rpm 명령어 관련 #

설치된 모든 패키지 list 보기   rpm -qa       prottpd 패키지에 대한 버전등 자세한 정보   rpm -qi prottpd       prottpd 패키지내에 포함된 파일 list보기   rpm -ql prottpd       xinetd.conf 파일이 속해있는 패키지 보기   rpm -qf /etc/xinetd.conf       prottpd 패키지 처음 설치하기   rpm -ivh … Read more