Parameters PermitRootLogin root 계정에 대한 ssh 접근 허용 여부 yes no ClientAliveInterval ssh 클라이언트의 유지 기간 sec 단위 ClientAliveCountMax ClientAliveInterval 카운트 AllowUsers 로그인 허용 사용자 리스트 Jan 24 00:00:00 host sshd[11111]: User root from localhost not allowed because not listed in AllowUsers AllowGroups 로그인 허용 사용자그룹 리스트
[Linux] rdate
rdate 인터넷 접근 가능한 경우 time.bora.net time server 의 네트워크 시간대 가져오기 rdate -s time.bora.net CMOS 시간 업데이트 clock -w http://mslee89.tistory.com/74
[Linux] dmidecode
dmidecode # dmidecode -V 3.0 # dmidecode -h Usage: dmidecode [OPTIONS] Options are: -d, –dev-mem FILE Read memory from device FILE (default: /dev/mem) -h, –help Display this help text and exit -q, –quiet Less verbose output -s, –string KEYWORD Only display the value of the given DMI string -t, –type TYPE Only display the entries […]
[Linux] TIMEZONE 변경하기
시스템에서 사용 가능한 TIMEZONE 리스트 확인 timedatectl list-timezones 서울 설정 timedatectl set-timezone Asia/Seoul
[Linux] rsyslog timestamp format
vi /etc/rsyslog.conf #Use default timestamp format #$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat $ActionFileDefaultTemplate RSYSLOG_FileFormat service rsyslog restart https://rsyslog-5-8-6-doc.neocities.org/rsyslog_conf_templates.html https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux_OpenStack_Platform/3/html/Installation_and_Configuration_Guide/Starting_rsyslog_Server.html
[Linux] php 설치
php 설치 의존 라이브러리 libxml2-devel libwebp-devel libjpeg-devel libpng-devel libXpm-devel libicu-devel 설치 1. Configuration ./configure –prefix=/apps/php/7.1.8 \ –with-config-file-path=/apps/php \ –with-config-file-scan-dir=/apps/php/conf.d \ –with-apxs2=/apps/httpd/bin/apxs –with-mysqli \ –with-pdo-mysql –enable-calendar \ –enable-sockets –enable-sysvsem \ –enable-sysvshm –enable-zip –with-zlib \ –with-curl=/apps/share/curl –with-gd \ –enable-mbstring –with-openssl=/apps/share/openssl \ –with-openssl-dir=/apps/share/openssl \ –with-jpeg-dir=/apps/php/img_format_dir/jpeg \ –with-png-dir=/apps/php/img_format_dir/png \ –with-xpm-dir=/apps/php/img_format_dir/xpm \ –with-webp-dir=/apps/php/img_format_dir/webp \ –enable-pcntl \ –enable-intl 2. Build make […]
[Linux] httpd 설치
Apache Httpd 설치 의존 패키지 버전 PROGRAM VERSION apr 1.6.2 apr-util 1.5.3 curl 7.30.0 pcre 8.00 openssl 1.0.2m httpd 2.4.27 apr 설치 1. Configuration ./configure –prefix=/apps/share/apr/1.6.2 2. Build make 3. Install make install apr-util 설치 1. Configuration ./configure –prefix=/apps/share/apr-util/1.5.3 \ –with-apr=/apps/share/apr 2. Build make 3. Install make install curl 설치 1. Configuration ./configure –prefix=/apps/share/curl/7.30.0 2. […]
[Linux] How to Upgrade Ubuntu
업데이트 목록 갱신 sudo apt-get update 현재 패키지 업그레이드 sudo apt-get upgrade 신규 업데이트 설치 sudo apt-get dist-upgrade
[Linux] iscsi(target)를 이용한 공유 디스크 구성
iscsi(target)를 이용한 공유 디스크 구성 iscsi 를 이용한 공유 디스크를 구성한다. TAC 와 같은 Active-Active DB Cluster 를 구성하는 경우, 스토리지 서버 (iscsi target server) 1 대와 DB 서버 2 대 총 3대 의 linux 서버가 필요하다. 스토리지 서버(target server)에서 아래와 같이 /dev/targetcli/lun01 로 이름지어진 block type device 인 lv 를 생성한다. DB 서버(iscsi client) […]