1)

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSMQ\Parameters

 

DWORD 값 추가

Name : TCPNoDelay

Value : 1

 

2)

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces

 

인터페이스 아래 하위폴더 중에서 현재 사용중인 IP가 등록 되어있는 하위 폴더 선택

 

DWORD 값 추가

Name : TcpAckFrequency

Value : 1

 

Name : TcpDelAckTicks

Value : 0

 

3) 리부팅

안정적인 DNS서비스 DNSEver DNS server, DNS service
Posted by 키르히아이스
,
-- 링크서버 목록
exec sp_linkedservers

-- 링크서버 등록
exec sp_addlinkedserver @server = '링크서버이름', @srvproduct = '', @provider = 'SQLOLEDB', @datasrc = '링크서버IP'

-- 링크서버 계정추가
exec sp_addlinkedsrvlogin @rmtsrvname = '링크서버이름', @useself = 'FALSE', @locallogin = NULL, @rmtuser = '링크서버계정', @rmtpassword = '링크서버계정패스워드'

exec 링크서버이름.링크서버DB.dbo.링크서버프로시져

-- RPC에 대해 구성되지 않았습니다 오류 해결방법
-- 로컬
exec sp_serveroption '링크서버이름', 'rpc out', TRUE
-- 원격
exec sp_serveroption '링크서버이름', 'rpc', TRUE

--링크드 서버 삭제
exec sp_droplinkedsrvlogin '링크서버이름', NULL
exec sp_dropserver '링크서버이름'
안정적인 DNS서비스 DNSEver DNS server, DNS service
Posted by 키르히아이스
,
출처 : http://superuser.com/questions/47382/system-error-58-while-accessing-shares-on-windows-7-from-xp


System error 58 has occurred.
시스템 오류 58이(가) 생겼습니다.



HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\LargeSystemCache

...you need to tell Windows that you want to use the machine as a file server and that it should allocate resources accordingly. Set the following registry key to ‘1′:


HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters\Size

and set the following registry key to ‘3′:

After changing the two registry settings, I simply restarted the "Server" service in Windows 7 and now the sharing is working fine.

안정적인 DNS서비스 DNSEver DNS server, DNS service
Posted by 키르히아이스
,
안정적인 DNS서비스 DNSEver DNS server, DNS service
Posted by 키르히아이스
,