일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- junit
- jquery
- SeLinux
- laravel
- ajax
- DB
- curl
- larravel
- Android
- java
- input
- 리눅스
- CentOS
- properties
- error
- 톰캣
- tomcat
- NetBeans
- 와일드카드
- 안드로이드
- JSON
- MySQL
- 이클립스
- 정규식
- php
- javascript
- html
- Linux
- File
- Spring
- Today
- Total
목록전체 글 (162)
합쭈기 programming
node js 설치 yum install nodejs forever, socket.io 설치 npm -g install forever supervisor express express-generator socket.io 종속성 모듈 설치 npm install -dnpm install experss
/etc/sudoers 에서 Defaults !requiretty tty를 not으로 바꿔준다.
/var/log/maillog 에서 확인 시 domain 문제이면 호스트명이 nobody로 되어있어 보내지지 않는 경우이다. echo “호스트명” > /proc/sys/kernel/hostname
SHOW TABLES; SELECT FOUND_ROWS();
테이블 분석analyze table [테이블명]테이블 복구repair table [테이블명]
저장소 설치# yum install epel-release clamav 설치# yum install clamav 사용법 db 업데이트 # freshclam 디렉토리를 정한 후 그 디렉토리를 검사# clamscan -r /디렉토리명 디렉토리를 검사후 검사 내용을 로그파일로 생성 # clamscan -r /디렉토리명 -l datacheck.log 클램 안티바이러스에 대한 자세한 사용법# clamscan -h
동접 확인 # netstat -anp | grep 80 | grep ESTAB | wc -l 비정상 접속 확인 # netstat -na | grep ES- 한 아이피에서 3~5개가 정상 CPU 점유율 확인 # top -d 2 http 설정 조정 KeepAliveTimeout 2MaxKeepAliveRequests 100
Mysql 5.6 버전 설치 # rpm -ivh http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm# yum install mysql-community-server php 5.6 설치를 위한 remi-repository 추가 # yum -y install epel-release# cd /etc/yum.repos.d # wget http://rpms.famillecollet.com/enterprise/remi.repo php 5.6 및 apache 설치 # yum -y --enablerepo=remi,remi-php56 install httpd php php-common php 5.6 extension 설치 # yum --enablerepo..