전체 글
Hi,
-
# pure-ftpd yum -y install pure-ftpd systemctl restart pure-ftpd vim /etc/pure-ftpd/pure-ftpd.conf 77 NoAnonymous no 287 AnonymousCantUpload no systemctl restart pure-ftpd
CentOS7 pure-ftpd# pure-ftpd yum -y install pure-ftpd systemctl restart pure-ftpd vim /etc/pure-ftpd/pure-ftpd.conf 77 NoAnonymous no 287 AnonymousCantUpload no systemctl restart pure-ftpd
2022.04.20 -
# Vsftpd 설치 yum -y install vsftpd rpm -qa | grep vsftpd #설치 확인 systemctl restart vsftpd systemctl enable vsftpd systemctl status vsftpd cd /var/ftp #ftp 파일 확인 cd pub cp /boot/vmlinuz-0-rescue-0980594ad40741459f50ed86e038e729 test setenforce 0 firewall-config > Run/영구적 둘다 ftp 선택 vim /etc/vsftpd/vsftpd.conf # vsftpd 설정 파일 29 anon_upload_enable=YES 30 # 31 # Uncomment this if you want the anonymous..
CentOS7 Vsftpd 설치 , Ubuntu Vsftpd 설치# Vsftpd 설치 yum -y install vsftpd rpm -qa | grep vsftpd #설치 확인 systemctl restart vsftpd systemctl enable vsftpd systemctl status vsftpd cd /var/ftp #ftp 파일 확인 cd pub cp /boot/vmlinuz-0-rescue-0980594ad40741459f50ed86e038e729 test setenforce 0 firewall-config > Run/영구적 둘다 ftp 선택 vim /etc/vsftpd/vsftpd.conf # vsftpd 설정 파일 29 anon_upload_enable=YES 30 # 31 # Uncomment this if you want the anonymous..
2022.04.20 -
# DB와 web 분리 구축 # 서버 구축 CentOS7 First vmware # 브릿지 설정 centos newwork Adapter - nat에서 bridged로 변경 vim /etc/sysconfig/network-scripts/ifcfg-ens33 BOOTPROTO="static" IPADDR=192.168.0.41 NETMASK=255.255.255.0 GATEWAY=192.168.0.1 DNS1=8.8.8.8 systemctl restart network # httpd, php, mariadb, mariadb-server, php-mysqlnd 설치 yum -y install httpd php mariadb mariadb-server php-mysqlnd systemctl restart ht..
CentOS7 웹 서버와 DB서버 따로 구축 후 연동# DB와 web 분리 구축 # 서버 구축 CentOS7 First vmware # 브릿지 설정 centos newwork Adapter - nat에서 bridged로 변경 vim /etc/sysconfig/network-scripts/ifcfg-ens33 BOOTPROTO="static" IPADDR=192.168.0.41 NETMASK=255.255.255.0 GATEWAY=192.168.0.1 DNS1=8.8.8.8 systemctl restart network # httpd, php, mariadb, mariadb-server, php-mysqlnd 설치 yum -y install httpd php mariadb mariadb-server php-mysqlnd systemctl restart ht..
2022.04.20 -
Apache 버전 vim /etc/httpd/conf/httpd.conf > # ServerSignature Off MaxRequestWorkers 500 # 동시 접속자 수 제한 (DDOS막기) MaxKeepAliveRequests 500 # 한 유저의 요청 수 제한 TimeOut 300 # 5분동안 사용하지 않으면 세션 끊기 DDOS 막는 모듈 yum -y install epel-release yum -y install mod_evasive vim /etc/httpd/conf.d/mod_evasive.conf systemctl restart httpd DDOS 공격 systemctl stop firewalld setenforce 0 yum -y install epel-release yum -y ins..
CentOS7 DDOS 공격 및 방어Apache 버전 vim /etc/httpd/conf/httpd.conf > # ServerSignature Off MaxRequestWorkers 500 # 동시 접속자 수 제한 (DDOS막기) MaxKeepAliveRequests 500 # 한 유저의 요청 수 제한 TimeOut 300 # 5분동안 사용하지 않으면 세션 끊기 DDOS 막는 모듈 yum -y install epel-release yum -y install mod_evasive vim /etc/httpd/conf.d/mod_evasive.conf systemctl restart httpd DDOS 공격 systemctl stop firewalld setenforce 0 yum -y install epel-release yum -y ins..
2022.04.20 -
Apache를 Https로 보안 # 인증서 넣을 파일로 이동 cd /etc/pki/tls/certs/ # 키 생성 openssl genrsa -out http.key 2048 # csr 파일 생성 openssl req -new -key http.key -out http.csr # crt 파일 생성 openssl x509 -req -days 365 -in http.csr -signkey http.key -out http.crt # ssl파일 설치 yum -y install mod_ssl # ssl 설정 파일 수정 vim /etc/httpd/conf.d/ssl.conf # Server Certificate: 96 # Point SSLCertificateFile at a PEM encoded certifica..
CentOS7 HTTPS 보안Apache를 Https로 보안 # 인증서 넣을 파일로 이동 cd /etc/pki/tls/certs/ # 키 생성 openssl genrsa -out http.key 2048 # csr 파일 생성 openssl req -new -key http.key -out http.csr # crt 파일 생성 openssl x509 -req -days 365 -in http.csr -signkey http.key -out http.crt # ssl파일 설치 yum -y install mod_ssl # ssl 설정 파일 수정 vim /etc/httpd/conf.d/ssl.conf # Server Certificate: 96 # Point SSLCertificateFile at a PEM encoded certifica..
2022.04.20 -
Python 웹 구축 yum -y install python cd /var/www/cgi-bin # 아파치 설정 파일 vim /etc/httpd/conf/httpd.conf 302번째 줄 #AddHandler cgi-script .cgi .py systemctl restart httpd cd /var/www/cgi-bin vim first.py #!/usr/bin/env python print "Content-type: text/html\\n\\n" print "\\n" print " " print "Python Test Page in [Benmin.com]()" print "\\n\\n" chmod 707 first.py cd /var/www Tomcat 웹 구축 yum -y install tomcat..
CentOS7 python,tomcat 웹 구축Python 웹 구축 yum -y install python cd /var/www/cgi-bin # 아파치 설정 파일 vim /etc/httpd/conf/httpd.conf 302번째 줄 #AddHandler cgi-script .cgi .py systemctl restart httpd cd /var/www/cgi-bin vim first.py #!/usr/bin/env python print "Content-type: text/html\\n\\n" print "\\n" print " " print "Python Test Page in [Benmin.com]()" print "\\n\\n" chmod 707 first.py cd /var/www Tomcat 웹 구축 yum -y install tomcat..
2022.04.20