JOB/SYSTEM2010. 6. 28. 14:20

app.tar 다른 시스템으로 카피 후

 

1.# useradd –M mysql 계정생성

 

2.# chown –R mysql /app/dbms/mysql

   # chgrp –R mysql /app/dbms/mysql

 

3.# chcon -t texrel_shlib_t /app/apache/modules/libphp5.so

 

4.# groupadd oinstall

   # groupadd dba

   # useradd –g oinstall -G dba oracle

   # passwd oracle

   # chown –R oracle.oinstall /app/dbms/oracle

 

5. /app/apache/bin/apachectl –t  확인 후 아파치 시작

 

   /app/apache/logs/error_log 파일 참고

   캡처

 

  * chcon -t texrel_shlib_t /app/php5/lib/php/extensions/mysql.so

  * chcon -t texrel_shlib_t /app/php5/lib/php/extensions/oci8.so

  * chcon -t texrel_shlib_t /app/php5/lib/php/extensions/xmlrpc.so

  * chcon -t texrel_shlib_t /app/php5/lib/php/extensions/cubrid.so

  * chcon -t texrel_shlib_t /app/dbms/oracle/product/10.2.0/db_1/lib/libnnz10.so

  * chcon -t texrel_shlib_t /app/dbms/oracle/product/10.2.0/db_1/lib/libclntsh.so.10.1

 

 

6. scp –P 포트 root@192.168.0.xx;/etc/my.cnf /etc/   my.cnf 파일을 복사

'JOB > SYSTEM' 카테고리의 다른 글

SVN 추가방법  (0) 2010.07.22
SSH 파일전송 받기  (0) 2010.06.28
find 명령  (0) 2010.05.28
Posted by webfeel
JOB/SYSTEM2010. 6. 28. 13:40

scp 명령

 

scp –P 포트번호 aaa@aaa.com:/home/aaa/aaa.tar .

 

특정포트일 경우 –P 옵션사용

/home/aaa/aaa.tar 파일은 로컬의 현재(.)디렉토리에 저장.

'JOB > SYSTEM' 카테고리의 다른 글

SVN 추가방법  (0) 2010.07.22
app 배포방법  (0) 2010.06.28
find 명령  (0) 2010.05.28
Posted by webfeel
JOB/SYSTEM2010. 5. 28. 17:12
  1. 현재 디렉토리( . ) 이하에 확장자가 .html( -name "*.html" ) 인 파일만 ( -type -f )
    • find . -name "*.html" -type f -ls
  2. 파일 크기
    • 파일 크기가 300KB 이상( -size +300k )인 파일만 (호스팅되는 홈피내에 큰 사이트의 파일이 있는지 찾을 때 유용)
      find . -size +300k -ls
    • 파일 크기가 500bytes 이하( -size -500c )인 파일만 
      find . -size -500c -ls
  3. 수정일
    • 수정한지 20일 이상( -mtime +20 )된 파일과 디렉토리
      find . -mtime +20 -ls
    • 수정한지 20일 이상된 파일만
      find . -mtime +20 -type f -ls
    • 수정한지 20일 이상된 파일만 삭제 ( -exec rm {} \; ) (정기적으로 20일이 지난 파일을 삭제할 때 유용)
      find . -mtime +20 -type f -ls -exec rm {} \;
    • 수정한지 3일 이내( -mtime -3 )의 파일만 (백업할 때 유용)
      find . -mtime -3 -type f -ls
    • 수정한지 30분 이내( -mmin -30 )의 파일만
      find . -mmin -30 -type f -ls
  4. 퍼미션 및 파일 소유
    • 파일시스템 전체( / )에서 SUID/SGID가 설정된 모든 파일 목록을 얻음
      find / -type f \( -perm -04000 -o -perm -02000 \) -ls
    • 소유자가 없는 파일 목록을 얻음 (사용자는 이미 삭제했는데, 파일이 남은 경우)
      find / -nouser -o -nogroup
  5. 출력 형식 지정
    • 출력 형식을 printf로 만들어서 (출력 결과를 다른 프로그램에서 받아서 쓸 때 유용)
      %h = 경로, %f = 파일명, %k = KB, %s = Bytes
    • 형식 : <경로/파일명> <파일크기KB>
      find . -printf "%h/%f \t %kKB \n"
      ... 생략 ...
      ./public_html/phps/icon/type/pcx.gif      4KB
      ./public_html/phps/icon/type/ra.gif       4KB
      ./public_html/phps/icon/type/sound.gif    4KB
      ./public_html/phps/icon/type/text.gif     4KB
    • 형식 : <경로/파일명> <파일크기Bytes>
      find . -printf "%h/%f \t %sKB \n"
      ... 생략 ...
      ./public_html/phps/icon/type/movie.gif    912Bytes
      ./public_html/phps/icon/type/mp3.gif      958Bytes
      ./public_html/phps/icon/type/pcx.gif      897Bytes
      ./public_html/phps/icon/type/ra.gif       903Bytes
      ./public_html/phps/icon/type/sound.gif    932Bytes
  6. 홈페이지 포팅할 때 퍼미션 안 맞는 경우 유용한 것
    • 확장자가 .htm* .gif, .js, .css 인 것만 퍼미션을 644(rw-r--r--)로
      find . -name "*.htm*" -o -name "*.gif" -o -name "*.js" -o -name "*.css" -exec chmod 644 {} \;
    • 파일은 퍼미션을 644로
      find . -type f -exec chmod 644 {} \;
    • 디렉토리는 퍼미션을 701로
      find . -type d -exec chmod 701 {} \;
    • 하위의 모든 퍼미션을 바꾸지 않고 depth를 지정하여 제한을 둘 때
      옵션 : -maxdepth 숫자  (1=현재디렉토리만, 2=현재디렉토리 포함하여 한단계 하위디렉토리까지만)
      find . -maxdepth 1 -type d -exec chmod 701 {} \;
      ※ -maxdepth는 -type나 -perm 등의 조건연산자가 아닌 옵션이다. 따라서 조건연산자보다 먼저 사용해야한다. (다른 명령처럼 옵션을 먼저쓰는 것으로 이해하면 됨)
      find . -type -d -maxdepth 1 과 같이 사용하는 것은 옳지 않다.

    출처 : http://sukhoi.springnote.com/pages/1712582

    [출처]

    [linux] find 사용 예|작성자 jin

'JOB > SYSTEM' 카테고리의 다른 글

SVN 추가방법  (0) 2010.07.22
app 배포방법  (0) 2010.06.28
SSH 파일전송 받기  (0) 2010.06.28
Posted by webfeel