ILOM(Integrated Lights Out Manager) 사용자 가이드.
http://docs.sun.com/source/820-1188-11/index.html
Fujitsu 유닉스장비를 설치하러 갔다가 헤맸음. 결론은 SUN Netra 시리즈의 ILOM을 사용한다는것.
5월 07
ILOM(Integrated Lights Out Manager) 사용자 가이드.
http://docs.sun.com/source/820-1188-11/index.html
Fujitsu 유닉스장비를 설치하러 갔다가 헤맸음. 결론은 SUN Netra 시리즈의 ILOM을 사용한다는것.
5월 06
먼저, 오라클의 테이블 스페이스는 시스템 테이블스페이스와 사용자테이블스페이스가 있다. 시스템테이블 스페이스는 오라클자체에 관련된 테이블을 가지고 있는 공간이다. 사용자테이블스페이스를 만들지 않은 상태에서 테이블을 생성하면 시스템테이블스페이스에 사용자의 테이블이 생성되며 사용에도 문제는 없다. 다만, 나중에 어떤 문제가 생길지도 모르겠다. 때문에, 사용자테이블스페이스를 생성해서 사용자가 사용하도록 해준다.
sql> create tablespace tblspace_name
sql> datafile ‘/export/home/oradata/tblspace_name.dbf’ size=xxxM
sql> autoextend=on next xxM maxsize=xxxM ;
여기서, 화일의 경로와 이름은 자신의 환경에 맞도록한다. 물론, xxx 에 관한 숫자역시 마찬가지다.
다음은 생성한 테이블 스페이스를 사용할 사용자를 등록하는 방법.
sql> create user user_name identified by user_passwd
sql> default tablespace tblspace_name;
sql> grant connect, resource to user_name;
사용자를 추가하고, 사용자가 사용할 테이블스페이스를 주며, 사용자의 권한을 주는 방법이다.
더 자세한것은 오라클 매뉴얼을 … ;ㅡㅡ
5월 05
데이타 덤프 받기
exp userid=poss/poss file=’./poss.dmp’ full=y
덤프받은 데이타 임포트하기
imp file=’./poss.dmp’ ignore=y
또는
imp userid=poss/poss file=’./poss.dmp’ ignore=y
여기에서 오라클 사용자테이블 스페이스는 poss, 사용자아이디 비밀번호는각각 poss로 동일한 경우이며, 저장할 화일은 poss.dmp라는 화일이다.
5월 03
httpd.conf 에서
ServerSignature Off
ServerTokens ProductOnly
로 설정.
php.ini 에서
expose_php = off
로 설정.
4월 28
원문 : http://www.brandonhutchinson.com/Solaris_NIC_speed_and_duplex_settings.html
OS 새로 설치한 후 hme0 가 동작하지 않아서 ndd로 설정변경해봄
Solaris is often unable to correctly auto-negotiate duplex settings with a link partner (e.g. switch), especially when the switch is set to 100Mbit full-duplex. You can force the NIC into 100Mbit full-duplex by disabling auto-negotiation and 100Mbit half-duplex capability.
Example with hme0:
1. Make the changes to the running system.
# ndd -set /dev/hme adv_100hdx_cap 0
# ndd -set /dev/hme adv_100fdx_cap 1
# ndd -set /dev/hme adv_autoneg_cap 0
4월 14
우분투에 오라클 11g 설치
http://www.pythian.com/blogs/654/installing-oracle-11g-on-ubuntu-linux-710-gutsy-gibbon
그대로 따라한 후
sqlplus /nolog
SQL> conn / as sysdba
ERROR:
ORA-12162: TNS:net service name is incorrectly specified
에러…
검색결과 oraenv 실행
ORACLE_SID = [oracle] ?
ORACLE_HOME = [/home/oracle] ?
The Oracle base for ORACLE_HOME=/home/oracle is /home/oracle
해결안됨…
oracle 10g로 재시도중…
참고사이트: http://www.bywoong.com/blog_v2/1116
4월 01
어플리케이션(netbackup6.0 client)을 실행했을때 에러 발생. 해결방안은?
fatal:librt.so.1: version ‘SUNW_1.2’ not found
1. SUNWcsl 확인 2. LD_NOVERSION 이 yes인지 확인?