<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SnapCreator Powerhell cannot connect to snapcreator 4.3.0P3 Server in Data Protection</title>
    <link>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/127886#M11233</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did the port number change during the upgrade? I had a look at the source code, it will default to 8443 if the port number is not provided.&lt;/P&gt;&lt;P&gt;Here is a sample of the source code, it fails with error "httpsConnectionFailed"before it fails it calls "ConnectHTTPS" which sets the port to 8443 (if it is not specified) (this.port.value : 8443)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;		protected override void ProcessRecord()
		{
			if (string.IsNullOrEmpty(this.Name))
			{
				this.Name = "localhost";
			}
			ScServer server = new ScServer(this.Name);
			if (this.Credential == null)
			{
				base.ThrowTerminatingError(new ErrorRecord(new ArgumentNullException("Credentials not provided."), "CredentialsNotSpecified", ErrorCategory.InvalidArgument, null));
			}
			else
			{
				try
				{
					ConnectScServer.logger.Debug("Trying HTTPS");
					base.WriteVerbose("Trying HTTPS");
					this.ConnectHTTPS(server, this.Credential);
				}
				catch (Exception ex)
				{
					base.WriteError(new ErrorRecord(ex, "HttpsConnectionFailed", ErrorCategory.InvalidResult, server));
				}
			}
			if (server.EngineVersion == null)
			{
				ConnectScServer.logger.DebugFormat("Failed to connect to {0}", server.Hostname);
				base.WriteVerbose(string.Format("Failed to connect to {0}", server.Hostname));
				server = null;
			}
			else
			{
				ConnectScServer.logger.DebugFormat("Connected to {0} using {1}", server.Hostname, server.Protocol);
				base.WriteVerbose(string.Format("Connected to {0} using {1}", server.Hostname, server.Protocol));
			}
			if (!this.Transient)
			{
				this.SetSessionVariable(server);
			}
			base.WriteObject(server);
		}

		protected void ConnectHTTPS(ScServer server, PSCredential credentials)
		{
			server.Credentials = credentials.GetNetworkCredential();
			server.Port = (int)(this.Port.HasValue ? this.Port.Value : 8443);
			server.Protocol = ServerProtocol.HTTPS;
			ConnectScServer.logger.DebugFormat("Connecting to {0} via HTTPS", server.Hostname);
			this.GetEngineVersion(server);
			this.GetRbacVersion(server);
			this.GetRepositoryVersion(server);
			this.GetSchedulerVersion(server);
			this.GetStorageVersion(server);
		}&lt;/PRE&gt;&lt;P&gt;See the documentation here for checking\changing the port number&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="https://library.netapp.com/ecm/ecm_download_file/ECMLP2604630" href="https://library.netapp.com/ecm/ecm_download_file/ECMLP2604630" target="_blank"&gt;https://library.netapp.com/ecm/ecm_download_file/ECMLP2604630&lt;/A&gt; (Page 15)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could try specifying the port number when connecting. IE:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Param(
   [Parameter(Mandatory=$True, HelpMessage="The hostname or IP Address of the SnapCenter server")]
   [String]$HostName,
   [Parameter(Mandatory=$True, HelpMessage="The SnapCenter Port Number")]
   [Int]$PortNumber,
   [Parameter(Mandatory=$True, HelpMessage="The credentials to authenticate the to SnapCreator server")]   
   [System.Management.Automation.PSCredential]$Credentials
)
#'------------------------------------------------------------------------------
Import-Module SnapCreator -ErrorAction SilentlyContinue
Try{
   Connect-ScServer -Name $HostName -Port $PortNumber -Credential $credentials -ErrorAction Stop | Out-Null
   Write-Host "Connected to SnapCenter ""$HostName"" on port number ""$PortNumber"""
}Catch{
   Write-Warning -Message $("Failed connecting to SnapCenter ""$HostName"" on port number ""$PortNumber"". Error " + $_.Exception.Message)
   Break;
}
#'------------------------------------------------------------------------------&lt;/PRE&gt;&lt;P&gt;Then try connecting (assuming you save the above code as "C:\scripts\snapcreator\testconnect.ps1"). IE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;PS C:\scripts\snapcreator&amp;gt;$credentials = Get-Credential -Credential admin
PS C:\scripts\snapcreator&amp;gt;.\testconnect.ps1 -HostName localhost -PortNumber 8443 -Credentials $credentials&lt;/PRE&gt;&lt;P&gt;I suspect it's more likely to be related to SSL\TLS security rather than an issue with the port number though.&lt;/P&gt;&lt;P&gt;Just trying to help eliminate the obvious first before troubleshooting further.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/Matt&lt;/P&gt;</description>
    <pubDate>Thu, 09 Feb 2017 00:07:34 GMT</pubDate>
    <dc:creator>mbeattie</dc:creator>
    <dc:date>2017-02-09T00:07:34Z</dc:date>
    <item>
      <title>SnapCreator Powerhell cannot connect to snapcreator 4.3.0P3 Server</title>
      <link>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/127871#M11232</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using&amp;nbsp;SC_PowerShell_Toolkit_4.1.7.0.&lt;/P&gt;&lt;P&gt;After a SnapCreator Upgrade to version 4.3.0P3, the snapcreator powershell cannot connect to the scserver with the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS C:\Users\user&amp;gt; Connect-ScServer -Name &amp;lt;SnapCreatorServer&amp;gt;&amp;nbsp;-Credential&amp;nbsp;admin&lt;/P&gt;&lt;P&gt;Connect-ScServer : Could not establish secure channel for SSL/TLS with authority '&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;SnapCreatorServerIP&amp;gt;&lt;/SPAN&gt;:8443'.&lt;/P&gt;&lt;P&gt;At line:1 char:1&lt;/P&gt;&lt;P&gt;+ Connect-ScServer -Name &lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;SnapCreatorServer&amp;gt;&lt;/SPAN&gt; -Credential&amp;nbsp;admin&lt;/P&gt;&lt;P&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + CategoryInfo&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : InvalidResult: (&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;SnapCreatorServer&amp;gt;&lt;/SPAN&gt;:ScServer) [Connect-ScServer], SecurityNegotiationException&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; + FullyQualifiedErrorId : HttpsConnectionFailed,NetApp.SnapCreatorPS.Server.Cmdlets.ConnectScServer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hostname &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Address &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ApiVersion&lt;/P&gt;&lt;P&gt;-------- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;------- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ----------&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;SnapCreatorServer&amp;gt;&lt;/SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;SnapCreatorServerIP&amp;gt;&lt;/SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 15:28:49 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/127871#M11232</guid>
      <dc:creator>yoni</dc:creator>
      <dc:date>2025-06-04T15:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: SnapCreator Powerhell cannot connect to snapcreator 4.3.0P3 Server</title>
      <link>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/127886#M11233</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did the port number change during the upgrade? I had a look at the source code, it will default to 8443 if the port number is not provided.&lt;/P&gt;&lt;P&gt;Here is a sample of the source code, it fails with error "httpsConnectionFailed"before it fails it calls "ConnectHTTPS" which sets the port to 8443 (if it is not specified) (this.port.value : 8443)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;		protected override void ProcessRecord()
		{
			if (string.IsNullOrEmpty(this.Name))
			{
				this.Name = "localhost";
			}
			ScServer server = new ScServer(this.Name);
			if (this.Credential == null)
			{
				base.ThrowTerminatingError(new ErrorRecord(new ArgumentNullException("Credentials not provided."), "CredentialsNotSpecified", ErrorCategory.InvalidArgument, null));
			}
			else
			{
				try
				{
					ConnectScServer.logger.Debug("Trying HTTPS");
					base.WriteVerbose("Trying HTTPS");
					this.ConnectHTTPS(server, this.Credential);
				}
				catch (Exception ex)
				{
					base.WriteError(new ErrorRecord(ex, "HttpsConnectionFailed", ErrorCategory.InvalidResult, server));
				}
			}
			if (server.EngineVersion == null)
			{
				ConnectScServer.logger.DebugFormat("Failed to connect to {0}", server.Hostname);
				base.WriteVerbose(string.Format("Failed to connect to {0}", server.Hostname));
				server = null;
			}
			else
			{
				ConnectScServer.logger.DebugFormat("Connected to {0} using {1}", server.Hostname, server.Protocol);
				base.WriteVerbose(string.Format("Connected to {0} using {1}", server.Hostname, server.Protocol));
			}
			if (!this.Transient)
			{
				this.SetSessionVariable(server);
			}
			base.WriteObject(server);
		}

		protected void ConnectHTTPS(ScServer server, PSCredential credentials)
		{
			server.Credentials = credentials.GetNetworkCredential();
			server.Port = (int)(this.Port.HasValue ? this.Port.Value : 8443);
			server.Protocol = ServerProtocol.HTTPS;
			ConnectScServer.logger.DebugFormat("Connecting to {0} via HTTPS", server.Hostname);
			this.GetEngineVersion(server);
			this.GetRbacVersion(server);
			this.GetRepositoryVersion(server);
			this.GetSchedulerVersion(server);
			this.GetStorageVersion(server);
		}&lt;/PRE&gt;&lt;P&gt;See the documentation here for checking\changing the port number&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="https://library.netapp.com/ecm/ecm_download_file/ECMLP2604630" href="https://library.netapp.com/ecm/ecm_download_file/ECMLP2604630" target="_blank"&gt;https://library.netapp.com/ecm/ecm_download_file/ECMLP2604630&lt;/A&gt; (Page 15)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could try specifying the port number when connecting. IE:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Param(
   [Parameter(Mandatory=$True, HelpMessage="The hostname or IP Address of the SnapCenter server")]
   [String]$HostName,
   [Parameter(Mandatory=$True, HelpMessage="The SnapCenter Port Number")]
   [Int]$PortNumber,
   [Parameter(Mandatory=$True, HelpMessage="The credentials to authenticate the to SnapCreator server")]   
   [System.Management.Automation.PSCredential]$Credentials
)
#'------------------------------------------------------------------------------
Import-Module SnapCreator -ErrorAction SilentlyContinue
Try{
   Connect-ScServer -Name $HostName -Port $PortNumber -Credential $credentials -ErrorAction Stop | Out-Null
   Write-Host "Connected to SnapCenter ""$HostName"" on port number ""$PortNumber"""
}Catch{
   Write-Warning -Message $("Failed connecting to SnapCenter ""$HostName"" on port number ""$PortNumber"". Error " + $_.Exception.Message)
   Break;
}
#'------------------------------------------------------------------------------&lt;/PRE&gt;&lt;P&gt;Then try connecting (assuming you save the above code as "C:\scripts\snapcreator\testconnect.ps1"). IE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;PS C:\scripts\snapcreator&amp;gt;$credentials = Get-Credential -Credential admin
PS C:\scripts\snapcreator&amp;gt;.\testconnect.ps1 -HostName localhost -PortNumber 8443 -Credentials $credentials&lt;/PRE&gt;&lt;P&gt;I suspect it's more likely to be related to SSL\TLS security rather than an issue with the port number though.&lt;/P&gt;&lt;P&gt;Just trying to help eliminate the obvious first before troubleshooting further.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/Matt&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2017 00:07:34 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/127886#M11233</guid>
      <dc:creator>mbeattie</dc:creator>
      <dc:date>2017-02-09T00:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: SnapCreator Powerhell cannot connect to snapcreator 4.3.0P3 Server</title>
      <link>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/127894#M11234</link>
      <description>&lt;P&gt;Hi Matt,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your response,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The port number didnt change during the upgrade, the port is still the default port - 8443.&lt;/P&gt;&lt;P&gt;The&amp;nbsp;"testconnect script" is getting the follow error; (you wrote 'snapcenter' instead of 'snapcreator')&lt;/P&gt;&lt;PRE&gt;WARNING: Failed connecting to SnapCenter "&amp;lt;SnapCreatorServer&amp;gt;" on port number "8443". Error Could not establish secure channel for SSL/TLS with authority '&amp;lt;SnapCreatorIP&amp;gt;:8443'.&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found something very strange,&lt;/P&gt;&lt;P&gt;I am trying to access the snap creator server from two different servers (a WFA server and the local SnapCreator server).&lt;/P&gt;&lt;P&gt;I get the "SSL" error from both of the servers (ApiVersion 1.0), but I found that in the snapcreator server, after a powershell connection to the netapp, the connection to the local snapcreator server works (ApiVersion 1.1). It doesnt work in the WFA server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Local SnapCreator Server:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;PRE&gt;PS C:\Windows\system32&amp;gt; Connect-ScServer -Name localhost -Credential admin
Connect-ScServer : Could not establish secure channel for SSL/TLS with authority '127.0.0.1:8443'.
At line:1 char:1
+ Connect-ScServer -Name localhost -Credential admin
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidResult: (localhost:ScServer) [Connect-ScServer], SecurityNegotiationException
    + FullyQualifiedErrorId : HttpsConnectionFailed,NetApp.SnapCreatorPS.Server.Cmdlets.ConnectScServer


Hostname             Address              ApiVersion
--------             -------              ----------
localhost            127.0.0.1               1.0


PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt; Connect-NcController -Name &amp;lt;NetAppClusterName&amp;gt; -Credential admin

Name                        Address                Vserver              Version
----                        -------                -------              -------
&amp;lt;NetAppClusterName&amp;gt;        &amp;lt;NetAppClusterIP&amp;gt;                            NetApp Release 8.3.2P4: Thu Jun 30 18:50:43 UTC 2016


PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt; Connect-ScServer -Name localhost -Credential admin

Hostname             Address              ApiVersion
--------             -------              ----------
localhost            127.0.0.1               1.1&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;WFA&amp;nbsp;Server:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;PS C:\Windows\System32&amp;gt; Connect-ScServer -Name &amp;lt;SnapCreatorServer&amp;gt; -Credential admin
Connect-ScServer : Could not establish secure channel for SSL/TLS with authority '&amp;lt;SnapCreatorIP&amp;gt;:8443'.
At line:1 char:1
+ Connect-ScServer -Name col-snapcreator -Credential netapp
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidResult: (&amp;lt;SnapCreatorServer&amp;gt;:ScServer) [Connect-ScServer], SecurityNegotiationExcepti
   on
    + FullyQualifiedErrorId : HttpsConnectionFailed,NetApp.SnapCreatorPS.Server.Cmdlets.ConnectScServer


Hostname                 Address                  ApiVersion
--------                 -------                  ----------
&amp;lt;SnapCreatorServer&amp;gt;      &amp;lt;SnapCreatorIP&amp;gt;           1.0


PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\system32&amp;gt; Connect-NcController -Name &amp;lt;NetAppClusterName&amp;gt; -Credential admin

Name                        Address                Vserver              Version
----                        -------                -------              -------
&amp;lt;NetAppClusterName&amp;gt;        &amp;lt;NetAppClusterIP&amp;gt;                            NetApp Release 8.3.2P4: Thu Jun 30 18:50:43 UTC 2016


PS C:\Windows\system32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt; Connect-ScServer -Name &amp;lt;SnapCreatorServer&amp;gt; -Credential admin
Connect-ScServer : Could not establish secure channel for SSL/TLS with authority '&amp;lt;SnapCreatorIP&amp;gt;:8443'.
At line:1 char:1
+ Connect-ScServer -Name col-snapcreator -Credential netapp
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidResult: (&amp;lt;SnapCreatorServer&amp;gt;:ScServer) [Connect-ScServer], SecurityNegotiationExcepti
   on
    + FullyQualifiedErrorId : HttpsConnectionFailed,NetApp.SnapCreatorPS.Server.Cmdlets.ConnectScServer


Hostname                 Address                  ApiVersion
--------                 -------                  ----------
&amp;lt;SnapCreatorServer&amp;gt;      &amp;lt;SnapCreatorIP&amp;gt;           1.0&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2017 08:46:43 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/127894#M11234</guid>
      <dc:creator>yoni</dc:creator>
      <dc:date>2017-02-09T08:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: SnapCreator Powerhell cannot connect to snapcreator 4.3.0P3 Server</title>
      <link>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/130051#M11311</link>
      <description>&lt;P&gt;We haver snapcreator version 4.3.1 and having same error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;connect-scserver : Could not establish secure channel for SSL/TLS with authority 'Server:8443'.&lt;BR /&gt;At line:1 char:1&lt;BR /&gt;+ connect-scserver -credential&lt;BR /&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;BR /&gt;+ CategoryInfo : InvalidResult: (153.112.4.219:ScServer) [Connect-ScServer], SecurityNegotiationException&lt;BR /&gt;+ FullyQualifiedErrorId : HttpsConnectionFailed,NetApp.SnapCreatorPS.Server.Cmdlets.ConnectScServer&lt;/P&gt;&lt;P&gt;Is any way we can install API version 1.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Hostname Address ApiVersion&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-------- ------- ----------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;snapcreator &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;153.112.4.219&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;1.0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We used the workaround to connect the CDOT filer first but still we have issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS C:\Users\tin2036x&amp;gt; import-module dataontap&lt;BR /&gt;PS C:\Users\tin2036x&amp;gt; connect-nccontroller NetApp -credential admin&lt;/P&gt;&lt;P&gt;Name Address Vserver Version&lt;BR /&gt;---- ------- ------- -------&lt;BR /&gt;NetApp. 153.112.47.210 NetApp Release 8.3.2P7: Mon Oct 03 10:59:56 UTC 2016&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PS C:\Users\tin2036x&amp;gt; connect-scserver snapcreator&amp;nbsp;-credential&amp;nbsp;&lt;BR /&gt;connect-scserver : Could not establish secure channel for SSL/TLS with authority '153.112.4.219:8443'.&lt;BR /&gt;At line:1 char:1&lt;BR /&gt;+ connect-scserver 153.112.4.219 -credential tin2036x&lt;BR /&gt;+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;BR /&gt;+ CategoryInfo : InvalidResult: (153.112.4.219:ScServer) [Connect-ScServer], SecurityNegotiationException&lt;BR /&gt;+ FullyQualifiedErrorId : HttpsConnectionFailed,NetApp.SnapCreatorPS.Server.Cmdlets.ConnectScServer&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Hostname Address ApiVersion&lt;BR /&gt;-------- ------- ----------&lt;BR /&gt;snapcreator &amp;nbsp;&lt;SPAN&gt;153.112.4.219&amp;nbsp;&lt;/SPAN&gt;1.0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help to fix the issue.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.netapp.com/t5/user/viewprofilepage/user-id/57269"&gt;@yoni&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;Hi Matt,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your response,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The port number didnt change during the upgrade, the port is still the default port - 8443.&lt;/P&gt;&lt;P&gt;The&amp;nbsp;"testconnect script" is getting the follow error; (you wrote 'snapcenter' instead of 'snapcreator')&lt;/P&gt;&lt;PRE&gt;WARNING: Failed connecting to SnapCenter "&amp;lt;SnapCreatorServer&amp;gt;" on port number "8443". Error Could not establish secure channel for SSL/TLS with authority '&amp;lt;SnapCreatorIP&amp;gt;:8443'.&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found something very strange,&lt;/P&gt;&lt;P&gt;I am trying to access the snap creator server from two different servers (a WFA server and the local SnapCreator server).&lt;/P&gt;&lt;P&gt;I get the "SSL" error from both of the servers (ApiVersion 1.0), but I found that in the snapcreator server, after a powershell connection to the netapp, the connection to the local snapcreator server works (ApiVersion 1.1). It doesnt work in the WFA server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Local SnapCreator Server:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;PRE&gt;PS C:\Windows\system32&amp;gt; Connect-ScServer -Name localhost -Credential admin
Connect-ScServer : Could not establish secure channel for SSL/TLS with authority '127.0.0.1:8443'.
At line:1 char:1
+ Connect-ScServer -Name localhost -Credential admin
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidResult: (localhost:ScServer) [Connect-ScServer], SecurityNegotiationException
    + FullyQualifiedErrorId : HttpsConnectionFailed,NetApp.SnapCreatorPS.Server.Cmdlets.ConnectScServer


Hostname             Address              ApiVersion
--------             -------              ----------
localhost            127.0.0.1               1.0


PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt; Connect-NcController -Name &amp;lt;NetAppClusterName&amp;gt; -Credential admin

Name                        Address                Vserver              Version
----                        -------                -------              -------
&amp;lt;NetAppClusterName&amp;gt;        &amp;lt;NetAppClusterIP&amp;gt;                            NetApp Release 8.3.2P4: Thu Jun 30 18:50:43 UTC 2016


PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt;
PS C:\Windows\system32&amp;gt; Connect-ScServer -Name localhost -Credential admin

Hostname             Address              ApiVersion
--------             -------              ----------
localhost            127.0.0.1               1.1&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;WFA&amp;nbsp;Server:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;PS C:\Windows\System32&amp;gt; Connect-ScServer -Name &amp;lt;SnapCreatorServer&amp;gt; -Credential admin
Connect-ScServer : Could not establish secure channel for SSL/TLS with authority '&amp;lt;SnapCreatorIP&amp;gt;:8443'.
At line:1 char:1
+ Connect-ScServer -Name col-snapcreator -Credential netapp
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidResult: (&amp;lt;SnapCreatorServer&amp;gt;:ScServer) [Connect-ScServer], SecurityNegotiationExcepti
   on
    + FullyQualifiedErrorId : HttpsConnectionFailed,NetApp.SnapCreatorPS.Server.Cmdlets.ConnectScServer


Hostname                 Address                  ApiVersion
--------                 -------                  ----------
&amp;lt;SnapCreatorServer&amp;gt;      &amp;lt;SnapCreatorIP&amp;gt;           1.0


PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\system32&amp;gt; Connect-NcController -Name &amp;lt;NetAppClusterName&amp;gt; -Credential admin

Name                        Address                Vserver              Version
----                        -------                -------              -------
&amp;lt;NetAppClusterName&amp;gt;        &amp;lt;NetAppClusterIP&amp;gt;                            NetApp Release 8.3.2P4: Thu Jun 30 18:50:43 UTC 2016


PS C:\Windows\system32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt;
PS C:\Windows\System32&amp;gt; Connect-ScServer -Name &amp;lt;SnapCreatorServer&amp;gt; -Credential admin
Connect-ScServer : Could not establish secure channel for SSL/TLS with authority '&amp;lt;SnapCreatorIP&amp;gt;:8443'.
At line:1 char:1
+ Connect-ScServer -Name col-snapcreator -Credential netapp
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidResult: (&amp;lt;SnapCreatorServer&amp;gt;:ScServer) [Connect-ScServer], SecurityNegotiationExcepti
   on
    + FullyQualifiedErrorId : HttpsConnectionFailed,NetApp.SnapCreatorPS.Server.Cmdlets.ConnectScServer


Hostname                 Address                  ApiVersion
--------                 -------                  ----------
&amp;lt;SnapCreatorServer&amp;gt;      &amp;lt;SnapCreatorIP&amp;gt;           1.0&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2017 10:38:14 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/130051#M11311</guid>
      <dc:creator>Abhishar</dc:creator>
      <dc:date>2017-04-12T10:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: SnapCreator Powerhell cannot connect to snapcreator 4.3.0P3 Server</title>
      <link>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/130053#M11312</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please try connecting using the following code. This will provide verbose output of the exception. Can you please post a screenshot of it?&lt;/P&gt;&lt;P&gt;I'd like to see the stack trace property of the error object to trace the source code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;#'------------------------------------------------------------------------------
Param(
   [Parameter(Mandatory=$True, HelpMessage="The hostname or IP Address of the SnapCenter server")]
   [String]$HostName,
   [Parameter(Mandatory=$True, HelpMessage="The SnapCenter Port Number")]
   [Int]$PortNumber,
   [Parameter(Mandatory=$True, HelpMessage="The credentials to authenticate the to SnapCreator server")]   
   [System.Management.Automation.PSCredential]$Credentials
)
#'------------------------------------------------------------------------------
Import-Module SnapCreator -ErrorAction SilentlyContinue
Try{
   Connect-ScServer -Name $HostName -Port $PortNumber -Credential $credentials -ErrorAction Stop | Out-Null
   Write-Host "Connected to SnapCenter ""$HostName"" on port number ""$PortNumber"""
}Catch{
   Write-Warning -Message $("Failed connecting to SnapCenter ""$HostName"" on port number ""$PortNumber"". Error " + $_.Exception.Message)
   &lt;STRONG&gt;echo $_.Exception | Format-List -Force&lt;/STRONG&gt;
}
#'------------------------------------------------------------------------------&lt;/PRE&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/Matt&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2017 11:12:25 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/130053#M11312</guid>
      <dc:creator>mbeattie</dc:creator>
      <dc:date>2017-04-12T11:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: SnapCreator Powerhell cannot connect to snapcreator 4.3.0P3 Server</title>
      <link>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/149798#M12448</link>
      <description>Add below before connect-scServer
===================================
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12</description>
      <pubDate>Tue, 23 Jul 2019 21:58:27 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/SnapCreator-Powerhell-cannot-connect-to-snapcreator-4-3-0P3-Server/m-p/149798#M12448</guid>
      <dc:creator>GLENYU5820</dc:creator>
      <dc:date>2019-07-23T21:58:27Z</dc:date>
    </item>
  </channel>
</rss>

