28 02 2014
1. 기존 SVN Repositories 의 Repository를 SCM으로 파일 그대로 이동 2.SCM Manager에서 Repository에서 동일한 이름으로 생성 끝
화상연동/Web,APP 구축및서비스/LMS/평생교육/학점은행/기업교육/연수관리/설문구축/
28 02 2014
1. 기존 SVN Repositories 의 Repository를 SCM으로 파일 그대로 이동 2.SCM Manager에서 Repository에서 동일한 이름으로 생성 끝
28 02 2014
원격가상교육시스템 – (주)누리웨어 – 크레듀 – 메디오피아 – 4CSOFT – 미래넷
27 02 2014
Flash Back Query 예제 10분전의 데이타를 복구합니다.
1 2 3 4 5 6 7 |
insert into dept select * from dept AS OF TIMESTAMP(SYSTIMESTAMP - INTERVAL '10' MINUTE) where tutorid = '******'; |
27 02 2014
1 2 3 |
FULL Level Export C:\>exp userid=system/manager file='C:\full.dmp' full=y User Level Export C:\>exp userid=scott/tiger owner='scott' file='C:\scott.dmp' |
1 2 3 |
Table Level Export C:\>exp userid=system/manager file='C:exp.dmp' tables=(scott.EMP, scott.DEPT) |
=> 위와 같이 table의 schema(user)명까지 지정해야만 export가 성공합니다. C:\>exp userid=scott/tiger file=’C:\exp.dmp’ tables=(EMP, DEPT) log=exp.log => user가 자신의 table을 export할 때에는 schema 명을 지정할 필요 없습니다. FULL Level Import 예제1) 전체 데이터베이스가 IMPORT됩니다. (Full Level)
1 |
C:\>imp userid=system/manager file='C:\full.dmp' full=y |
예제2) scott의 유저 IMPORT를 실행 합니다.(User Level)
1 |
C:\>imp userid=scott/tiger fromuser='scott' touser='scott' file='C:\scott.dmp' |
예제3) […]
27 02 2014
9i에서는 svrmgrl이 없어졌습니다. 그래서 …
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 |
1. sqlplus를 DB에 접속하지 않고 실행시킨다. 먼저 oracle계정으로 접속한뒤 $sqlplus /nolog 2. sysdba로 오라클에 접속한다. SQL>connect 유저명/패스워드 as sysdba ( connect system/비밀번호 as sysdba) create tablespace abcd_maindb datafile 'D:\web\NURICORE\database\abcd_maindb.dbf' size 300M default storage (initial 1M next 1M minextents 2 maxextents unlimited pctincrease 0 ); create tablespace abcd_indexdb datafile 'D:\web\NURICORE\database\abcd_indexdb.dbf' size 300M default storage (initial 1M next 1M minextents 2 maxextents unlimited pctincrease 0 ); create temporary tablespace "abcd_tempdb" tempfile 'D:\web\NURICORE\database\abcd_tempdb.dbf' size 50M extent management local uniform size 5M; create user abcd identified by 비밀번호 default tablespace abcd_maindb temporary tablespace "abcd_tempdb"; grant connect,resource to abcd grant connect,resource,EXP_FULL_DATABASE,IMP_FULL_DATABASE to abcd |
27 02 2014
그룹관리 그룹생성
1 |
groupadd -g 1000 web |
– web이라는 그룹을 그룹아이디를 1000으로 생성해라 – /etc/group열어보면 알수 있음 2.그룹변경 groupmod [-g gid [-o]] gid변경 [-n] 새로운 그룹명으로 변경 groupmod 700 toheart groupmod kkum toheart 3. 그룹삭제
1 |
groupdel group |
27 02 2014
1.계정생성 1.사용자생성
1 |
useradd -d /webproject -g web -m -s /bin/bash resin |
2.패스워드변경
1 |
passwd resin |
3. 계정 조회
1 |
cat /etc/passwd |
현재 시스템에 로그인된 사용자 계정을 조회 / 사용자 계정에 대한 정보를 확인 root : x : o : o : root : /root : /bin/bash 1 2 3 4 5 6 7 1 : 사용자명 2 : 패스워드 (/etc/shadow 파일에 암호화되어 […]
26 02 2014
21세기 디지털 정보화사회에서 컨설팅,시스템통합,아웃소싱,솔루션공급,연구개발등 특화된 핵심역량으로 고객의 경쟁력 제고와 고부가가치 실현에 앞장서 나가고 있습니다. 솔루션중심의 SI사업을 전개해나간다는 기본 전략에 따라 엔터프라이즈 영상멀티미디어, 디지털방송,모바일 데이터 인프라 구축 솔류션등 특화솔루션을 다수 확보하여 솔루션 공급에 주력하고 있습니다.
10 02 2014
vsftpd 설치 : Linux에서 사용하는 FTP 서버 데몬
1 |
yum install vsftpd |
참고 : https://security.appspot.com/vsftpd.html 환경파일 설정 #vi /etc/vsftpd/vsftpd.conf anonymous_enable=NO // 익명 접속 처리 N pasv_enable=YES // 액티브모드 사용할 시 NO : 확인 요망 #vi /etc/vsftpd/user_list 접속 거부 사용자 리스트 : FTP에 root를 Open 하지 않도록 구성한다. #vi /etc/vsftpd/ftpusers 접속 거부 사용자 리스트 : […]
10 02 2014
Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!