일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- php
- CentOS7
- Certbot
- home page
- crontab
- DOM Parser
- Apache
- MariaDB
- root
- Mac
- centos
- mysql
- launch.json
- 구글 클라우드
- git pull
- Linux
- Google Cloud
- LetsEncrypt
- Xdebug
- SSL
- Liniux
- vscode
- https
- new user
- html
- Fail2ban
- front page
- non-www
- child theme
- wordpress
- Today
- Total
목록Software Development Engineering/Linux (4)
between 0 and 1
Fail2ban is an open-source software that actively scans the servers log files in real-time for any brute force login attempts, and if found, summarily blocks the attack using the servers firewall software (firewalld or iptables). Fail2Ban runs as a background process and continuously scans the log files for unusual login patterns and security breach attempts. Installation $ yum install epel-rele..
리눅스 반복 예약 작업인 crontab 을 이용하다 보면,요일 마다 반복되는 작업을 걸고 싶을 때가 있다. (서버 재부팅 주기를 설정한다거나...... 백업을 주기적으로 실행한다거나...... ) 할 때 마다 헷갈려서 정리해 놓으려고 한다. crontab 관련된 파일 및 경로들은 아래와 같다 /etc/crontab/etc/cron.d//etc/cron.daily//etc/cron.hourly//etc/cron.monthly//etc/cron.weekly//var/spool/cron/ 위의 경로중 마지막 /var/spool/cron/ 디렉토리에 보면 최종적으로 사용자별 crontab 설정들이 있다.위 경로들을 에디터로 열어서 직접 수정을 해주어도 되고, 간단하게 아래의 명령로도 최종 수정본을 접속하여 수정..
CentOS 7에 PHP7 설치하기 CentOS 7에 yum을 이용해 php를 설치하면, 5.4.x 버전이 설치가 된다.하지만, 지금 PHP의 최신 버전은 7.x 최신 버전을 설치하는 방법은 아래와 같다. 1. EPEL and Remi repository를 설치하고 활성화한다.$> yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm$> yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm 2. yum-utils 를 설치한다.$> yum install yum-utils * yum-utils은 yum repositorie와 package를 관리할 ..
CentOS 7에 서버환경을 구축하는 간단한 방법!(Apache, PHP, MariaDB) 1. 서버 환경 설치 - Apache, PHP, MariaDB $> yum install httpd php mariadb-server php-mysql 2. 시작 서비스로 등록 - 서버가 부팅될 때 서비스가 자동으로 시작되도록 등록 $> systemctl enable httpd$> systemctl enable mariadb 3. 서비스 시작$> systemctl start httpd$> systemctl start mariadb 4. MariaDB 관리자 비밀번호 설정$> mysql_secure_installation 5. MariaDB 외부에서 접근 가능하도록 설정1) root 계정으로 MariaDB 접속$> ..