부팅시(2)
-
[우분투] 부팅시 서비스 자동실행 등록
1. 서비스를 실행 할 스크립트 작성. - 위치 : /etc/init.d/ ex : /etc/init.d/auto_run.sh - 자동 실행 등록을 하면 해당 스크립트가 실행되어 서비스를 띄우게 된다. 2. 권한 부여 - chmod 777 /etc/init.d/[실행 스크립트이름] - ex : chmod 777 /etc/init.d/auto_run.sh 3. 서비스 등록 - update-rc.d [실행 스크립트 이름] defaults ex : update-rc.d auto_run.sh defaults defaults : runlevel 3, 5 4. 확인 - 재부팅하여 서비스 확인
2017.07.17 -
리눅스 환경에서 부팅시 오라클 자동실행
1. /etc/oratab 파일 수정. [root@server1 bin]# cat /etc/oratab## This file is used by ORACLE utilities. It is created by root.sh# and updated by the Database Configuration Assistant when creating# a database. # A colon, ':', is used as the field terminator. A new line terminates# the entry. Lines beginning with a pound sign, '#', are comments.## Entries are of the form:# $ORACLE_SID:$ORACLE_HOME::## ..
2017.06.27