[FTP]SecureCrt X/Y/Zmodem
·
Linux
[root@server ~]# sz /disk/data/temp/D43D7E0F1DC6-20170918140715.zip --> 파일다운로드시 # rz - 내 PC에 있는 자료를 서버로 업로드 # sz 파일명 - 지정된 폴더로 다운 ------------------------------------------------ [root@server ~]# yum install lrzsz
netstat
·
Linux
netstat cmd는 현재 리눅스에서 사용중인 network 상태를 알려줌 netstat -anp : 현재 리눅스 서버와 연결된 모든 connection 정보 특정 데몬이 사용하는 네트워크 컨넥션 정보를 알고 싶을 때는 grep name 을 같이 사용하면 된다. netstat -anp | grep name 특정 데몬이 다수개의 connection을 가지고 있을 때 실행중인 데몬의 개수 netstat -anp | grep name | wc -l ESTABLISH 한 connection 확인 netstat -anp | grep EST
secure 로그 설정
·
Linux
[root@hostname etc]# vi /etc/logrotate.conf # see "man logrotate" for details # rotate log files weekly weekly# keep 4 weeks worth of backlogs rotate 4# create new (empty) log files after rotating old ones create# uncomment this if you want your log files compressed #compress# RPM packages drop log rotation information into this directory include /etc/logrotate.d# no packages own wtmp -- we'll r..
[Linux]messages, dmesg, acpid 상태확인
·
Linux
/var/log 에서 messages, dmesg, acpid 보시면 시스템 부팅부터 상태까지 확인할 수 있습니다.
Redhat9(2.4.20-8) + Mysql5.x + Apache2.0.x + j2SE 1.5.X + Tomcat5.0.x + mod_jk
·
Linux
http://www.superuser.co.kr/home/lecture/index.php?cateNo=1&secNo=27&theNo=&leccode=90 http://www.superuser.co.kr/home/lecture/index.php?cateNo=1&secNo=27&theNo=&leccode=118 mysql 은 간단한 dbms로 apache+php 와 많이 연동에서 사용합니다. 처음 배우기에 쉽고 구조 자체가 간단하여 공부하기에는 수월할 것입니다. 요즘 들어와서 소스로 설치 할 필요 없이 그냥 설정 몇가지만 바꿔 주면 사용이 가능해 졌습니다. 일단 소스 디렉터리로 이동합니다. 1) [root@localhost /]# cd /usr/local/src 아래 주소에서 MYSQL5.x버전을 받습니다...