Powershell नहीं लोगन सर्वर उपलब्ध हैं


0

मेरे पास एक परिनियोजन सर्वर A, मेरी स्थानीय मशीन B और वह सर्वर है जिस पर मैं C का उपयोग कर रहा हूं। जब मैं B - & gt; C यह सफल है। जब मैं उसी स्क्रिप्ट को A - & gt; C यह विफल रहता है, मैं इसे पिंग कर सकता हूं लेकिन कुछ और नहीं चलाना।

टेस्ट स्क्रिप्ट:

$credential2 = New-Object System.Management.Automation.PsCredential(("Test\ci"), (ConvertTo-SecureString "Password" -AsPlainText -Force))
Test-Connection -ComputerName C

invoke-command -computername C { get-UICulture } -Credential $credential2 

त्रुटि संदेश:

[C] Connecting to remote server failed with the following error message : WinRM cannot process the request. The
 following error occured while using Kerberos authentication: There are currently no logon servers available to service
 the logon request.
 Possible causes are:
  -The user name or password specified are invalid.
  -Kerberos is used when no authentication method and no user name are specified.
  -Kerberos accepts domain user names, but not local user names.
  -The Service Principal Name (SPN) for the remote computer name and port does not exist.
  -The client and remote computers are in different domains and there is no trust between the two domains.
 After checking for the above issues, try the following:
  -Check the Event Viewer for events related to authentication.
  -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or us
e HTTPS transport.
 Note that computers in the TrustedHosts list might not be authenticated.
   -For more information about WinRM configuration, run the following command: winrm help config. For more information,
 see the about_Remote_Troubleshooting Help topic.
    + CategoryInfo          : OpenError: (:) [], PSRemotingTransportException
    + FullyQualifiedErrorId : PSSessionStateBroken

अंतिम नोट: - B, B एक ही डोमेन पर हैं, C एक वर्कग्रुप है - सक्षम- PSRemoting (किया गया) - समूह नीति को संशोधित (किया) - सेट-निष्पादनपुलिस (किया) - फ़ायरवॉल खुला (किया)

मैं विचारों से बाहर चल रहा हूं, किसी भी अनुमान या सामान का पालन करना चाहिए? अग्रिम में मदद के लिए धन्यवाद।


क्या आपने यहां कोई सुझाव दिया है: stackoverflow.com/questions/18284132/...
Qwilson

मुझे अंत में यह समझ आ गया। एक ही डोमेन पर सर्वर की अनुमति देने के लिए मेरी समूह नीति निर्धारित की गई थी। मुझे यह सब सेट करने की अनुमति देने की आवश्यकता है * या इसे अक्षम करें। मुझे लगता है कि जब मुझे कॉन्फ़िगर किया गया था तो मैं दूर चला गया।
Matthew Rhoden

जवाबों:


0

ऐसा लगता है कि महत्वपूर्ण हिस्सा मेरी नीति सेटिंग्स सत्यापित था। सर्वर C (कार्यसमूह) सेटअप करने के लिए डोमेन पर A, B जैसे सर्वरों को जोड़ने की अनुमति देता था। कुछ बिंदु पर मैंने उसी सेटिंग्स के साथ सर्वर ए सेट किया। चूँकि C एक कार्यसमूह पर है, A ने इस पर भरोसा नहीं किया।

इस परिदृश्य को समायोजित करने के लिए ए से सेटिंग्स को हटाने / अपडेट करने के लिए फिक्स था।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.