- 말줄임표시
- ASP.Net Core 404
- 파일업로드 체크
- Mac Oracle
- javascript 바코드스캔
- asp.net Select
- javascript 바코드 생성
- ViewBag
- ViewData
- 하드 윈도우 복사
- 바코드 생성하기
- XSS방어
- javascript redirection
- php 캐쉬제거
- 맥 오라클설치
- 바코드 스캔하기
- javascript 유효성체크
- TempData
- django 엑셀불러오기
- asp.net core Select
- 하드 마이그레이션
- jquery 바코드
- 타임피커
- 404에러페이지
- XSS PHP
- SSD 복사
- 파일업로드 유효성체크
- 강제이동
- asp.net dropdownlist
- jquery 바코드생성
목록리눅스서버 (30)
웹개발자의 기지개
1. public zone 설정파일 # vi /etc/firewalld/zones/public.xml Public For use in public areas. You do not trust the other computers on networks to not harm your computer. Only selected incoming connections are accepted. ssh, ftp 서비스가 가동중이고 port 80, 8037이 열려있다. 2. firewalld 실행여부 확인하기 firewall-cmd --state 실행중이면 running, 아니면 not running systemctl status firewalld 3. firewall 재로드 (설정후에는 반드시 재로드해야함) firewa..
방화벽 내역 확인 iptables -nL 일단 centos7의 기본 방화벽인 firewall데몬을 중지 시킨 후 재부팅시에도 올라오지 않도록 설정합니다. # systemctl stop firewalld # systemctl mask firewalld iptables 를 설치합니다.(OS설치시 웹서버 구성으로 설치시 자동 설치됨) # yum install iptables-services iptables 서비스 데몬 재부팅시 자동 설정합니다. # systemctl enable iptables iptables 서비스 시작합니다.(시작/재시작/중지) # systemctl start/restart/stop iptables iptables 재시작합니다. # systemctl restart iptables vi /e..
[사용자추가] useradd 계정이름 [사용자삭제] -r : 사용자의 홈디렉토리까지 제거 userdel -r 계정이름 [모든 사용자 확인하기] cat /etc/passwd [사용자 비번지정] passwd 계정이름 추가 참고내용 http://naompine.blogspot.com/2015/07/8-centos.html
https://xn--p39al0kmsgdpbczn.kr/37 무늬만 생각 님의 포스팅 글을 참고 정리하였습니다. CentOS7 iptables 설치및 설정 CentOS7 iptables 설치및 설정 방화벽 정지 cd \ > Enter > Enter systemctl mask firewalld > systemctl mask firewalld > systemctl stop firewalld iptables 서비스 패키지 설치 yum –y install iptables-ser.. xn--p39al0kmsgdpbczn.kr 1. 방화벽 정지 cd / 엔터키 systemctl mask firewalld systemctl mask firewalld systemctl stop firewalld 2. iptables..
1. 부팅화면 변경 (centor7 기준)(1) systemctl set-default multi-user.target 터미널모드로 부팅(2) systemctl set-default graphical.target 그래픽모드로 부팅(3) 부팅 화면 상태 조회: systemctl get-default 2. fdisk -l 디바이스 확인 3. 파이썬 위치 확인 : which python파이썬 버젼 확인 : python -V 3. rm -rf 디렉토리명 해당 디렉토리 모두 삭제 4. tar 압축 - www 폴더를 test.tar.gz 로 압축tar -zcvf test.tar.gz www tar 압축 풀기tar -zxvf test.tar.gz (특정폴더) 5. 하드 용량 확인df -h 6...