728x90
오랜만에 포스팅을 올립니다 :-) 본진 (http://nopdin.tistory.com) 에는 꾸준히 포스팅을 하고 있었는데, MVP Renewal 신청 이후 회사 일이 너무 바빠서 미처 신경을 제대로 못썼습니다. MVP Summit 이후 Terminal Service MVP 들과 계속 메일링을 주고 받는데, 역시 뛰어난 테크니션들이 정리 해주는 내용만 읽더라도 핵심을 집어내기에 좋은 것 같습니다.

윈도우 서버 2008 R2 와 윈도우 7 에는 새로운 프로토콜인 RDP 버전 7 이 공개가 되어있습니다. 이미 많은 TS 관련 업계의 종사자들이 테스팅을 하면서 특성을 파악하느라 한참입니다. Claudio Rodriguez 가 정리해준 내용에 따르면 아래와 같은 변화들이 눈에 띄는군요

원격 Direct-X 기능의 제거

윈도우 7 에서 터미널 서비스 클라이언트가 로컬 자원을 이용한다는 이야기로 많은 사람들이 설레였었습니다. 로컬 자원을 이용하여 비디오, 오디오를 디스플레이 하는 것이 얼마나 큰 장점인지 누구보다 잘 알고 있기 때문이죠.

한동안 한국 MS 의 백승주 차장님이 가상화 관련 데모 할 때 마다 등장하던 원더걸스의 HD 급 고화질은 이제 물건너 간 것일까요? 아쉽게도 리모트에서 로컬 자원(Direct-X를 통한) 엑세스 기능이 최종적으로 빠졌다고 합니다. 기술문서를 찾아보면 빠진 이유가 언급되어 있겠지만, 일단 간단하게 소식을 전합니다.

개선된 RDP 기능들

아마도 가장 각광 받을 기능중 하나는 "멀티 모니터의 지원" 이 아닐까 싶습니다. RDP 7 에서부터 제공이 되는 기능이구요, 멀티 모니터를 쓰지 않는다면 비스타부터 제공되는 "에어로 글래스" 기능을 over RDP 로 사용할 수 있게 되었습니다. 물론 서버쪽에서 테마 설정을 해줘야 하는 것은 당연한 것이겠지요? ^^ 네트웍 밴드 위스도 경량화 되었다고 하는데 이건 지켜봐야 할 것 같습니다.

VDI 와의 Integration

기존 RemoteApp 이외에 VDI 로 만든 가상머신을 같이 Publishing 할 수 있도록 기능이 개선되었습니다. TS Web 을 통해서 어플리케이션과 가상 머신을 함께 제공할 수 있는 준비가 된 것이지요. 모든것은 웹으로 모이는 것처럼 앞으로 RDS 쪽의 모든 기술도 TS Web 을 중심으로 모이지 않을까 조심스레 짐작해 봅니다.

- NoPD -
728x90
728x90
If you experience ORA-12537 connection closing after you opened firewall properly, you should check contents of protocol.ora file placed in Oracle Server.Generally, you can find it at "$ORACLE_HOME/network/admin/protocol.ora".


tcp.validnode_checking = yes
tcp.invited_nodes=( 192.168.0.100 )


Above config means, 152.68.18.73 is the only IP address which has authority to contact this Oracle Server. Be careful not to miss add server own IP address should be here.


tcp.validnode_checking = yes
tcp.excluded_nodes= (192.168.0.100 )


If you set any IP address into tcp.excluded_nodes item, that IP will be blocked when try to connect Oracle Server. Surely, you can use invited and excluded nodes with in same protocol.ora file simultaneously. When you need to allow more IP addresses, you can describe IP addresses in one line with comma seperation.


tcp.validnode_checking = yes
tcp.invited_nodes=( 192.168.0.100, 192.168.0.101 )


If you have so many IP addresses to allow or block, you can use IP range like 192.168.0.0 (B-Class). And you also can use domain name to describe specific IP address. Let`s see below example.


tcp.validnode_checking = yes
tcp.invited_nodes=( 192.168.0.100, 192.168.0.101, 192.168.0.0 )


Once you change on protocol.ora file, you should restart Oracle listener to make it effective.

- NoPD -
728x90
728x90
Last night, I have got request from my customer. He wanted to know how many XML nodes are there in XML log table placed in Oracle. I tried to find sufficient oracle function but couldn`t. So I make slightly dirty SQL query but it was very helpful to reduce manual job. Let`s see SQL query first.

SELECT xml_seq, 
       to_char((length(xml_recv)-length(replace(xml_recv,'<ITEM>',''))) / length('<ITEM>')) as item_count
  FROM tbl_xml_log
Look above SQL carefully. It looks dirty calculation about length of column but very simple. You can change <ITEM> to string that you want to count on specific column. It would be helpful for guys who want to count repeated character in specific column.

- NoPD -
728x90
728x90
DTFe
본 메일은 전자신문 정보사업국에서 발송하는 IT 전시/컨벤션 행사에 관한 정보 메일입니다.
본 메일의 수신을 취소하시려면 <여기>를 클릭해주세요.

서울시 영등포구 영등포동 2가 94-152 전자신문사
대표자 : 금기현 사업자번호 : 107-81-49507
전화 : 02-2168-9332~7 전자우편 : sekmaster@etnews.co.kr

Copyrightⓒ The Electronic Times. All Right Reserved

728x90

+ Recent posts