httpd.conf 에서
ServerSignature Off
ServerTokens ProductOnly
로 설정.
php.ini 에서
expose_php = off
로 설정.
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인지 확인?
3월 13
tcpdump로 ftp 접속시 발생하는 패킷 내용을 보려면…
tcpdump -t -x port ftp
tcpdump -t -x ‘port ftp or ftp-data’
tcpdump -t -x port 21
등등의 방법이 있음.
참고: http://kelp.or.kr/korweblog/stories.php?story=01/11/24/1000561
3월 13
1. 서브스크립션 등록
up2date –register
2. 업데이트할 패키지가 있는지 확인
up2date -l
3.모든 패키지 업그레이드
up2date -u
이때, 보통 커널은 업그레이드 되지 않는다. 이럴때 f옵션을 같이 사용하면 커널도 업그레이드됨
up2date -fu
4. 특정패키지를설치하거나업그레이드할때
up2date package_name
참고: http://www.cyberciti.biz/faq/howto-use-up2date-command/
1월 24
fedora나 ubuntu나 모두 배포판 CD를 이용할 수 있겠지만, 네트웍을 이용하는 경우.
fedora의 경우는 yum을 ubuntu의 경우는 apt-get을 이용.