<?xml version="1.0"?>
<rss version="2.0"><channel><title>Server Installation Latest Topics</title><link>https://community.stage.citrix.com/forums/forum/1205-server-installation/</link><description>Server Installation Latest Topics</description><language>en</language><item><title>Previous version ISO download for XenServer 8.4</title><link>https://community.stage.citrix.com/forums/topic/258638-previous-version-iso-download-for-xenserver-84/</link><description><![CDATA[<p>I am looking for the info where i can download the previous version of xenserver 8.4 iso, specifically released in May 2025, July 2025 etc.</p>]]></description><guid isPermaLink="false">258638</guid><pubDate>Wed, 10 Dec 2025 07:26:20 +0000</pubDate></item><item><title>powershell script not fetching pvs write cache in details</title><link>https://community.stage.citrix.com/forums/topic/250228-powershell-script-not-fetching-pvs-write-cache-in-details/</link><description><![CDATA[<p>
	######<br>
	#ICA and network latency tracker script<br>
	#<br>
	#created by sunil ms<br>
	#sunil.ms@infosys.com<br>
	#<br>
	#<br>
	#<br>
	#SYNOPSIS Script to show an ICA session's ICA round trip time and network latency. .<br>
	#DESCRIPTION The script runs for 20 seconds and measures (once every 2 seconds) the ICA RTT and network latency of the relevant session. <br>
	#The output shows the session info (username, device name/IP, session name/ID) and 10 reads (once every 2 seconds) of the session's<br>
	# ICA RTT and network latency in seconds. - <br>
	#<br>
	# 10 reads (once every 2 seconds) of session's ICA RTT and network latency.
</p>

<p>
	asnp citrix*<br>
	Function Start-Countdown <br>
	{   <br>
	    Param(<br>
	        [Int32]$Seconds = 10,<br>
	        [string]$Message = "Pausing for 10 seconds..."<br>
	    )<br>
	    ForEach ($Count in (1..$Seconds))<br>
	    {   Write-Progress -Id 1 -Activity $Message -Status "Taking ICA RTT and Network Latency sample for $Seconds seconds, $($Seconds - $Count) left" -PercentComplete (($Count / $Seconds) * 100)<br>
	        Start-Sleep -Seconds 1<br>
	    }<br>
	    Write-Progress -Id 1 -Activity $Message -Status "Completed" -PercentComplete 100 -Completed<br>
	}
</p>

<p>
	Function CheckCpuUsage() <br>
	{ <br>
	    param ($hostname)<br>
	    Try { $CpuUsage=(get-counter -ComputerName $hostname -Counter "\Processor(_Total)\% Processor Time" -SampleInterval 1 -MaxSamples 5 -ErrorAction Stop | select -ExpandProperty countersamples | select -ExpandProperty cookedvalue | Measure-Object -Average).average<br>
	       $CpuUsage = "{0:N1}" -f $CpuUsage; return "$CpuUsage %"<br>
	    } Catch { "Error returned while checking the CPU usage. Perfmon Counters may be fault" | LogMe -error; return 101 } <br>
	}<br>
	#============================================================================================== <br>
	# The function check the memory usage and report the usage value in percentage<br>
	Function CheckMemoryUsage() <br>
	{ <br>
	    param ($hostname)<br>
	   Try <br>
	    {   $SystemInfo = (Get-WmiObject -computername $hostname -Class Win32_OperatingSystem -ErrorAction Stop | Select-Object TotalVisibleMemorySize, FreePhysicalMemory)<br>
	       $TotalRAM = $SystemInfo.TotalVisibleMemorySize/1MB <br>
	       $FreeRAM = $SystemInfo.FreePhysicalMemory/1MB <br>
	       $UsedRAM = $TotalRAM - $FreeRAM <br>
	       $RAMPercentUsed = ($UsedRAM / $TotalRAM) * 100 <br>
	       $RAMPercentUsed = "{0:N0}" -f $RAMPercentUsed<br>
	       return "$RAMPercentUsed %"<br>
	    } Catch { "Error returned while checking the Memory usage. Perfmon Counters may be fault" | LogMe -error; return 101 } <br>
	}
</p>

<p>
	 $date=get-date
</p>

<p>
	 [void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic') <br>
	$CLT = [Microsoft.VisualBasic.Interaction]::InputBox('Enter user POD specific DC Server Name  : **POD6 [CLT--wsapp8915,,,STL--wsapp8920]-----***POD7 [CLT--wsapp8960,STL--wsapp8963]-----***POD8 [CLT wsapp9010,STL wsapp9013]')
</p>

<p>
	<br>
	     $CLTHSD=Get-brokersession -AdminAddress $CLT -MaxRecordCount 20000 #|where{$_.HostedMachineName -like "WHSD*" } | Sort-Object -Property @{Expression = "InMaintenanceMode"; Descending = $True}, @{Expression = "RegistrationState"; Descending = $False} #|select HostedMachineName,RegistrationState,InMaintenanceMode<br>
	    $STLHSD=Get-brokersession -AdminAddress $STL -MaxRecordCount 20000 #|where{$_.HostedMachineName -like "WHSD*" } | Sort-Object -Property @{Expression = "InMaintenanceMode"; Descending = $True}, @{Expression = "RegistrationState"; Descending = $False} #|select HostedMachineName,RegistrationState,InMaintenanceMode<br>
	    <br>
	[void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic') <br>
	$session_name = [Microsoft.VisualBasic.Interaction]::InputBox('Enter Afftected user D ID  example- d944771')
</p>

<p>
	[void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic') <br>
	$sampletime = [Microsoft.VisualBasic.Interaction]::InputBox('Enter ICA Packets Sample interval time in Sec example:  5')
</p>

<p>
	[void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic') <br>
	$sampletime1 = [Microsoft.VisualBasic.Interaction]::InputBox('Enter ICA Packets Sample interval counts in Sec example:  10')
</p>

<p>
	$server=($CLTHSD|where{$_.BrokeringUserName -match $session_name}).IPAddress<br>
	$server1=($CLTHSD |where{$_.BrokeringUserName -match "$session_name"}).Hostedmachinename<br>
	$hanu=$CLTHSD |where{$_.BrokeringUserName -match "$session_name" -and $_.HostedMachineName -match "$server1" } <br>
	#$sessionID = $hanu.SessionId<br>
	if ($session_name -Match 'RDP') {<br>
	Write-Host "There is no ICA RTT data on an RDP session. Please choose an ICA session."<br>
	exit<br>
	}<br>
	if (-Not (Get-WmiObject -ComputerName $server -Namespace root\Citrix\euem Citrix_Euem_ClientConnect)) {<br>
	Write-host "Couldn't find EUEM data. It's available on XenApp\XenDesktop 7.x and higher versions."<br>
	exit}<br>
	Else {<br>
	$final_obj = @()<br>
	$obj = New-Object PSObject<br>
	 # Check the AvgCPU value for 5 seconds<br>
	 $AvgCPUval = 0<br>
	       $AvgCPUval = CheckCpuUsage ($server)<br>
	        <br>
	        
</p>

<p>
	       # Check the Physical Memory usage   <br>
	       $UsedMemory = 0      <br>
	       $UsedMemory = CheckMemoryUsage ($server)<br>
	       <br>
	    $session_info1 = (Get-WmiObject -ComputerName $server -Namespace root\Citrix\euem Citrix_Euem_ClientConnect).count     <br>
	$session_info = Get-WmiObject -ComputerName $server -Namespace root\Citrix\euem Citrix_Euem_ClientConnect | where {$_.UserName -eq $session_name} #| select username, ClientMachineIP, ClientMachineName, PSComputerName<br>
	$sessionID=$session_info.SessionID<br>
	$obj | Add-Member "Username" $session_info.username<br>
	$obj | Add-Member "Device Name" $session_info.ClientMachineName<br>
	$obj | Add-Member "Device IP" $session_info.ClientMachineIP<br>
	$obj | Add-Member "Connected To" $session_info.PSComputerName<br>
	$obj | Add-Member "Session Name" $session_name<br>
	$obj | Add-Member "Session ID" $sessionID<br>
	$obj | Add-Member "Avarage CPU"  $AvgCPUval <br>
	$obj | Add-Member "Avarage Memory"  $UsedMemory <br>
	$obj | Add-Member "User Session count on HSD"  $session_info1<br>
	#$obj| ft -AutoSize<br>
	$suni= $session_info.ClientMachineName<br>
	$suni1=$session_info.PSComputerName<br>
	For ($i=0; $i -le $sampletime1; $i++) {<br>
	$temp_obj = New-Object PSObject<br>
	$temp = Get-WmiObject -ComputerName $server -Namespace root\Citrix\euem citrix_euem_RoundTrip | where {$_.SessionID -eq $sessionID} #| select NetworkLatency, RoundtripTime<br>
	$time = Get-Date -Format T<br>
	#$temp_obj | Add-Member "Session ID" $temp.SessionID<br>
	# Check the AvgCPU value for 5 seconds<br>
	$AvgCPUval = 0<br>
	       $AvgCPUval = CheckCpuUsage ($server)<br>
	        <br>
	        
</p>

<p>
	       # Check the Physical Memory usage   <br>
	       $UsedMemory = 0     <br>
	       $UsedMemory = CheckMemoryUsage ($server)<br>
	       <br>
	         <br>
	$temp_obj | Add-Member "HSD Machine" $temp.PSComputerName<br>
	$temp_obj | Add-Member "Time" $time<br>
	$temp_obj | Add-Member "ICA RTT in ms" $temp.RoundtripTime<br>
	$temp_obj | Add-Member "Network Latency in ms" $temp.NetworkLatency<br>
	$temp_obj | Add-Member "Avarage CPU"  $AvgCPUval <br>
	$temp_obj | Add-Member "Avarage Memory"  $UsedMemory<br>
	$temp_obj | Add-Member "User Session count on HSD"  $session_info1 <br>
	#$temp_obj | ft -AutoSize<br>
	$final_obj += $temp_obj<br>
	Write-Output $final_obj | Format-Table -AutoSize<br>
	Start-Countdown -Seconds $sampletime -Message "taking $session_name ICA RTT Network Latency samples "<br>
	}
</p>

<p>
	write-host $session_info.UserName " user ICA session's ICA round trip time and network latency (10 samples) Report $date" -ForegroundColor DarkRed -BackgroundColor DarkGray<br>
	Write-Output $obj | Format-Table -AutoSize<br>
	Write-Output $final_obj | Format-Table -AutoSize<br>
	#$obj| Out-GridView -Title "$session_name user connected HSD server $suni1 From $suni Client Machine " -passthru<br>
	write-host "ICA Round-Trip Time (ICA RTT) is used to quantify the user experience" -ForegroundColor DarkMagenta -BackgroundColor DarkYellow<br>
	write-host "ICA RTT in ms Up to 150ms: great user experience" -ForegroundColor DarkGreen #-BackgroundColor DarkYellow<br>
	write-host "ICA RTT in ms 150ms – 400ms: good/acceptable user experience" -ForegroundColor DarkYellow #-BackgroundColor DarkGray<br>
	write-host "ICA RTT in ms Over 400ms: degraded user experience" -ForegroundColor DarkRed  -BackgroundColor DarkGray<br>
	}
</p>

<p>
	#pause<br>
	$final_obj| Out-GridView -Title "$session_name user connected HSD server $suni1 From $suni Client Machine and ICA session's ICA RTT and network latency packets $sampletime sec sample for $sampletime1 interval  $date  " -passthru<br>
	pause
</p>
<p>
<a class="ipsAttachLink" href="https://community.stage.citrix.com/applications/core/interface/file/attachment.php?id=47765&amp;key=9cedc6a36495b0368d8f0ea96f7f1e28" data-fileext="docx" data-fileid="47765" data-filekey="9cedc6a36495b0368d8f0ea96f7f1e28">ICA RTT.docx</a></p>]]></description><guid isPermaLink="false">250228</guid><pubDate>Sun, 06 Nov 2022 04:33:07 +0000</pubDate></item><item><title>orphaned server</title><link>https://community.stage.citrix.com/forums/topic/256755-orphaned-server/</link><description><![CDATA[<p>Went to upgrade from 8.2 -&gt; 8.4. New install was mandated owing to age of host. Host was pool master (.215). One other host in pool (.214).</p><p></p><p>I migrated all the VMs to the other host (.214) and did the install. </p><p></p><p>post-install I got the iSCSI drives for host file storage reattached to the new 8.4 host (.215) but now I can't seem to get the other host (.214) to (re)join the pool. From XenCenter it says it's already a member of the pool but none of the VMs appear in the list. When I ssh to the host (.214) and run <code>xe vm-list -s &lt;xx.xx.xx.214&gt;</code> it says "authentication failed". From the control panel it says that no vms were found.</p><p></p><p>Not sure how to proceed from here. Do I need to create a new pool for the 8.4 host (.215), try to promote .214 to pool manager and then migrate? </p>]]></description><guid isPermaLink="false">256755</guid><pubDate>Mon, 11 Aug 2025 21:48:56 +0000</pubDate></item><item><title>migrating from 8.2 standard to 8.4 (premium)</title><link>https://community.stage.citrix.com/forums/topic/256727-migrating-from-82-standard-to-84-premium/</link><description><![CDATA[<p>I have a 3 node xen 8.2 (standard) install and I want / need to update to 8.4. Looks like 'standard' edition isn't available anymore and Im wondering about whether I can mix the 2 versions together during the upgrade.  (8.2 standard + 8.4 premium)</p>]]></description><guid isPermaLink="false">256727</guid><pubDate>Wed, 30 Jul 2025 18:18:18 +0000</pubDate></item><item><title>Install Xenserver on Cisco UCS Blade using Boot from SAN Fiber Channel HBA</title><link>https://community.stage.citrix.com/forums/topic/256695-install-xenserver-on-cisco-ucs-blade-using-boot-from-san-fiber-channel-hba/</link><description><![CDATA[<p>Trying to install Xenserver to demo it and using a Cisco UCS B200-M5 blade which is booting from our IBM SAN.  The blade sees the boot lun as it shows the WWPN on boot and this is the same LUN that was booting Vmware from.  The Xenserver install CD when booting shows no devices to install to.  I tried the multipath option as well.  It is like it needs a driver to see the FC HBA?  Any ideas? </p>]]></description><guid isPermaLink="false">256695</guid><pubDate>Thu, 17 Jul 2025 18:15:29 +0000</pubDate></item><item><title>simba sfc tool</title><link>https://community.stage.citrix.com/forums/topic/256701-simba-sfc-tool/</link><description><![CDATA[<p>chekcing</p>]]></description><guid isPermaLink="false">256701</guid><pubDate>Tue, 22 Jul 2025 09:21:03 +0000</pubDate></item><item><title>Issue Installing XenServer 8.4 // &#x201C;Error installing packages&#x201D;</title><link>https://community.stage.citrix.com/forums/topic/253735-issue-installing-xenserver-84-%E2%80%9Cerror-installing-packages%E2%80%9D/</link><description><![CDATA[<p>
	Hello,<br>
	does anyone know the problem. The installation of XenServer fails on a server (SR665 (ThinkSystem)). <br>
	The server boots from the installation medium, the configuration can be carried out, the installation then aborts after 2% with the error message “Error installing packages”.<br>
	The installation works on identical servers with the same settings and firmware versions. But not on this server. The hardware manufacturer no longer knows what to do. We have tried:<br>
	- Installation on different disks / raids --&gt; no success<br>
	- Installation via remoteconsole Java + HTML --&gt; no success<br>
	- Secure Boot is switched off, UEFI version is the same as the other servers.<br>
	The installation from an ESXi works! <br>
	I have no more ideas! Please help! <br>
	Thanks Alex
</p>

<p>
	 
</p>

<p><a href="//media.invisioncic.com/r328636/monthly_2025_04/image.png.97220533bf3fb93886f9097ee09014fa.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="38241" src="//media.invisioncic.com/r328636/monthly_2025_04/image.png.97220533bf3fb93886f9097ee09014fa.png" width="483" class="ipsImage ipsImage_thumbnailed" alt="image.png" loading="lazy" height="241.5"></a></p>]]></description><guid isPermaLink="false">253735</guid><pubDate>Wed, 02 Apr 2025 07:33:23 +0000</pubDate></item><item><title>Issue installing Xenserver 8 / 'target-platform'</title><link>https://community.stage.citrix.com/forums/topic/256498-issue-installing-xenserver-8-target-platform/</link><description><![CDATA[<p>
	In-place upgrade from Citrix Hypervisor 8.2 CU1 to XenServer 8 (2025-04-22) fails due to a target-platform error.
</p>

<p>
	Clean installation of XenServer 8 (2025-04-22) succeeds without issues.
</p>

<p>
	In-place upgrade from XenServer 8 (2024-12-09) to XenServer 8 (2025-04-22) also fails with the same target-platform error.
</p>

<p>
	However, in-place upgrade from Citrix Hypervisor 8.2 CU1 to XenServer 8 (2024-12-09) is successful.
</p>

<p><a href="//media.invisioncic.com/r328636/monthly_2025_04/XenServer.png.005a4fdf46d83d6ff1f0f26677647f56.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="38498" src="//media.invisioncic.com/r328636/monthly_2025_04/XenServer.thumb.png.8c1be0fde9be288a650e321fb8ea7a8a.png" width="563" class="ipsImage ipsImage_thumbnailed" alt="XenServer 업그레이드 오류.png" loading="lazy" height="748.79"></a></p>]]></description><guid isPermaLink="false">256498</guid><pubDate>Tue, 29 Apr 2025 00:05:11 +0000</pubDate></item><item><title>XenServer 8 lack of performance</title><link>https://community.stage.citrix.com/forums/topic/253397-xenserver-8-lack-of-performance/</link><description><![CDATA[<p>
	<span style="font-size:11pt;"><span style="font-family:Calibri;">With the implementation of Xenserver for our VDI workload we a strugling with performance of the VDI.</span></span>
</p>

<p>
	<span style="font-size:11pt;"><span style="font-family:Calibri;">From hour own investigation we think the problem has something to do with the numa assignment.</span></span><span style="font-size:11pt;"><span style="font-family:Calibri;">Why: we see at many times that de vcpu assignment is not assigned to a single socket, but assign accros cores on both sockets. This leaves the preffered single socket numa.</span></span>
</p>
]]></description><guid isPermaLink="false">253397</guid><pubDate>Thu, 07 Nov 2024 12:03:39 +0000</pubDate></item><item><title>Rolling Pool Upgrade from  Citrix Hypervisor 8.2 Cumulative Update 1 to XenServer 8</title><link>https://community.stage.citrix.com/forums/topic/253761-rolling-pool-upgrade-from-citrix-hypervisor-82-cumulative-update-1-to-xenserver-8/</link><description><![CDATA[<p>
	Hello,
</p>

<p>
	I have a dumb question about Rolling Pool Upgrade.
</p>

<p>
	I have a customer with 42 host in the same pool for Citrix DaaS Workload. I plan to do a Rolling Pool Upgrade but Citrix estimates the upgrade for about 35 min per host, that's means the whole upgrade will take approximatively 24 hours.
</p>

<p>
	Is it possible to use the automatic Rolling Pool Upgrade and to select a subset of servers to make some batch (ex : 10 servers at a time).
</p>

<p>
	 
</p>

<p>
	Or do I need to do a manual upgrade.
</p>

<p>
	 
</p>

<p>
	Thank you for your help.
</p>
]]></description><guid isPermaLink="false">253761</guid><pubDate>Wed, 09 Apr 2025 13:43:40 +0000</pubDate></item><item><title>Migrating from Hypervisor 8.2 to Xenserver 8</title><link>https://community.stage.citrix.com/forums/topic/256547-migrating-from-hypervisor-82-to-xenserver-8/</link><description><![CDATA[<p>Hi, </p><p>I have a pool with two Hypervisor 8.2 servers. We decided to buy two new servers (to current ones are 10 years old...) to replace them.</p><p>Is it possible to install Xenserver 8 (8.4 being the current one, as I've seen), add the new servers to the pool, migrate the VMs then remove/kill the old servers? Is that the best path? Should I replace the servers in some other way?</p><p>Thank you,</p><p>Roberto</p>]]></description><guid isPermaLink="false">256547</guid><pubDate>Tue, 03 Jun 2025 19:56:18 +0000</pubDate></item><item><title>XenServer 8.4 Synchronize with Update Channel not working with XenServer Premium License, but with Trial License works</title><link>https://community.stage.citrix.com/forums/topic/253729-xenserver-84-synchronize-with-update-channel-not-working-with-xenserver-premium-license-but-with-trial-license-works/</link><description><![CDATA[<p>
	Hello Community!
</p>

<p>
	I have a freshly installed pool consisting of two hosts running Xenserver 8.4. The pool is licensed as "Xenserver Premium Edition". The Normal Update Channel is selected. When attempting to synchronize with the update channel, I get the message: "Update your server license to apply software updates to XenPoolxx. Synchronization isn't working. If I remove the license from the pool, it operates as a 90-day trial version, and synchronization and installation of updates work. I've already generated a server status report and run the health check at cis.citrix.com. No issues were detected.
</p>

<p>
	Any recommendations on how I can synchronize and install updates with "Xenserver Premium Edition" license?
</p>

<p>
	Best regards!
</p>
]]></description><guid isPermaLink="false">253729</guid><pubDate>Tue, 01 Apr 2025 10:22:56 +0000</pubDate></item><item><title>Issue installing XenServer 8.4 on ProLiant DL20 Gen10</title><link>https://community.stage.citrix.com/forums/topic/253680-issue-installing-xenserver-84-on-proliant-dl20-gen10/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	all my attempts to install XenServer 8.4 on a ProLiant DL20 Gen10 have failed so far.<br>
	The installation always stops at the hardware detection.<br>
	A search has now revealed that this server is not in the HCL and is therefore not officially supported, only ProLiant DL20 Gen10 Plus or  ProLiant DL20 Gen11.
</p>

<p>
	<a href="https://hcl.xenserver.com/servers/?serversupport__version=21&amp;vendor=6" rel="external nofollow">https://hcl.xenserver.com/servers/?serversupport__version=21&amp;vendor=6</a>
</p>

<p>
	Any idea how to install the XenServer anyway to at least check if it runs on the hardware even if the scenario is unsupported?
</p>

<p>
	Regards<br>
	Roy
</p>

<p><a href="//media.invisioncic.com/r328636/monthly_2025_03/ProLiantDL20Gen10.png.a4330608b15c754598c7d20407465ea1.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="38052" src="//media.invisioncic.com/r328636/monthly_2025_03/ProLiantDL20Gen10.png.a4330608b15c754598c7d20407465ea1.png" width="423" class="ipsImage ipsImage_thumbnailed" alt="ProLiant DL20 Gen10.png" loading="lazy" height="59.22"></a></p>]]></description><guid isPermaLink="false">253680</guid><pubDate>Tue, 18 Mar 2025 10:23:02 +0000</pubDate></item><item><title>How can I update the PVS Supplemental packs?</title><link>https://community.stage.citrix.com/forums/topic/253131-how-can-i-update-the-pvs-supplemental-packs/</link><description><![CDATA[<p>
	On an existing Citrix Hypervisor (8.2 CU1) environment I want to enable the PVS-Accelerator feature. In the past someone has tried that and installed the PVS Supplemental packs version 1.0.4 and 1.0.8. These can also be seen in the 'Updates' on CHV.<br />
	Do I have to uninstall these two versions before installing version 1.0.9 (the latest at the moment)?<br />
	If so, how can I uninstall these two old versions? Or can the 1.0.9 version just be added and will that version be used by CHV / PVS?<br />
	<br />
	Thanks in advance!
</p>
]]></description><guid isPermaLink="false">253131</guid><pubDate>Fri, 02 Aug 2024 06:36:48 +0000</pubDate></item><item><title>XenServer 8 offline updates or hotfix installation.</title><link>https://community.stage.citrix.com/forums/topic/253103-xenserver-8-offline-updates-or-hotfix-installation/</link><description><![CDATA[<p>
	Hello everyone,
</p>

<p>
	I'm trying to figure out how can I install updates or hotfixes on the new XenServer 8. <br />
	I'm aware of the new update process, the Normal channel and the Earley access channel nevertheless from what I can see both require internet access.
</p>

<p>
	Is there way to download the hotfixes like we have done it with Citrix XenServer 8.21  and then apply them on the hypervisor ?<br />
	<br />
	Thank you. 
</p>
]]></description><guid isPermaLink="false">253103</guid><pubDate>Wed, 24 Jul 2024 07:13:24 +0000</pubDate></item><item><title>Warning: should_multipath() only based on wwids. dev = sda</title><link>https://community.stage.citrix.com/forums/topic/249869-warning-should_multipath-only-based-on-wwids-dev-sda/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	 
</p>

<p>
	i have a problem after reboot my (Dell 440 ) with my  Xen Hypervisor 8.2 CU1 the iSCSI Storage ist not attached.
</p>

<p>
	The Systme is already running for 2 Years without a problem. 
</p>

<p>
	 
</p>

<p>
	both Host shows multipath is not active. Biut they are active on the system.
</p>

<p>
	 
</p>

<p>
	Repair did not helped.
</p>

<p>
	 
</p>

<p>
	I checked those commands
</p>

<p>
	 
</p>

<p>
	[root@xen241 ~]# multipath -ll<br>
	[root@xen241 ~]# rescan-scsi-bus.sh<br>
	Scanning SCSI subsystem for new devices<br>
	Scanning host 0 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	 Scanning for device 0 2 0 0 ...<br>
	OLD: Host: scsi0 Channel: 02 Id: 00 Lun: 00<br>
	      Vendor: DELL     Model: PERC H330 Adp    Rev: 4.30<br>
	      Type:   Direct-Access                    ANSI SCSI revision: 05<br>
	Scanning host 1 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 2 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 3 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 4 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 5 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 6 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 7 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 8 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 9 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 10 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 11 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 12 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 13 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 14 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 15 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	Scanning host 16 for  SCSI target IDs  0 1 2 3 4 5 6 7, all LUNs<br>
	0 new or changed device(s) found.<br>
	0 remapped or resized device(s) found.<br>
	0 device(s) removed.<br>
	 
</p>

<p>
	[root@xen241 ~]# multipath -v4<br>
	Sep 16 01:19:36 | loading /lib64/multipath/libcheckdirectio.so checker<br>
	Sep 16 01:19:36 | loading /lib64/multipath/libprioconst.so prioritizer<br>
	Sep 16 01:19:36 | Discover device /sys/devices/pci0000:16/0000:16:02.0/0000:17:0                                                            0.0/host0/target0:2:0/0:2:0:0/block/sda<br>
	Sep 16 01:19:36 | sda: not found in pathvec<br>
	Sep 16 01:19:36 | sda: mask = 0x3f<br>
	Sep 16 01:19:36 | sda: dev_t = 8:0<br>
	Sep 16 01:19:36 | open '/sys/devices/pci0000:16/0000:16:02.0/0000:17:00.0/host0/                                                            target0:2:0/0:2:0:0/block/sda/size'<br>
	Sep 16 01:19:36 | sda: size = 936640512<br>
	Sep 16 01:19:36 | sda: vendor = DELL<br>
	Sep 16 01:19:36 | sda: product = PERC H330 Adp<br>
	Sep 16 01:19:36 | sda: rev = 4.30<br>
	Sep 16 01:19:36 | sda: h:b:t:l = 0:2:0:0<br>
	Sep 16 01:19:36 | open '/sys/devices/pci0000:16/0000:16:02.0/0000:17:00.0/host0/                                                            target0:2:0/0:2:0:0/state'<br>
	Sep 16 01:19:36 | sda: path state = running
</p>

<p>
	Sep 16 01:19:36 | sda: 58303 cyl, 255 heads, 63 sectors/track, start at 0<br>
	Sep 16 01:19:36 | sda: serial = 00cf1d310c116c162600d41edb002740<br>
	Sep 16 01:19:36 | sda: get_state<br>
	Sep 16 01:19:36 | sda: detect_checker = 1 (config file default)<br>
	Sep 16 01:19:36 | sda: path checker = directio (internal default)<br>
	Sep 16 01:19:36 | sda: checker timeout = 90000 ms (sysfs setting)<br>
	Sep 16 01:19:36 | directio: called for 800<br>
	Sep 16 01:19:36 | directio: called in synchronous mode<br>
	Sep 16 01:19:36 | directio: starting new request<br>
	Sep 16 01:19:36 | directio: io finished 4096/0<br>
	Sep 16 01:19:36 | sda: directio state = up<br>
	Sep 16 01:19:36 | sda: uid_attribute = ID_SERIAL (internal default)<br>
	Sep 16 01:19:36 | sda: got wwid of '36f402700db1ed40026166c110c311dcf'<br>
	Sep 16 01:19:36 | sda: uid = 36f402700db1ed40026166c110c311dcf (udev)<br>
	Sep 16 01:19:36 | sda: detect_prio = 1 (config file default)<br>
	Sep 16 01:19:36 | sda: prio = const (internal default)<br>
	Sep 16 01:19:36 | sda: prio args =  (internal default)<br>
	Sep 16 01:19:36 | sda: const prio = 1<br>
	Sep 16 01:19:36 | Discover device /sys/devices/pci0000:16/0000:16:02.0/0000:17:0                                                            0.0/host0/target0:2:0/0:2:0:0/block/sda/sda1<br>
	Sep 16 01:19:36 | Discover device /sys/devices/pci0000:16/0000:16:02.0/0000:17:0                                                            0.0/host0/target0:2:0/0:2:0:0/block/sda/sda2<br>
	Sep 16 01:19:36 | Discover device /sys/devices/pci0000:16/0000:16:02.0/0000:17:0                                                            0.0/host0/target0:2:0/0:2:0:0/block/sda/sda3<br>
	Sep 16 01:19:36 | Discover device /sys/devices/pci0000:16/0000:16:02.0/0000:17:0                                                            0.0/host0/target0:2:0/0:2:0:0/block/sda/sda4<br>
	Sep 16 01:19:36 | Discover device /sys/devices/pci0000:16/0000:16:02.0/0000:17:0                                                            0.0/host0/target0:2:0/0:2:0:0/block/sda/sda5<br>
	Sep 16 01:19:36 | Discover device /sys/devices/pci0000:16/0000:16:02.0/0000:17:0                                                            0.0/host0/target0:2:0/0:2:0:0/block/sda/sda6<br>
	Sep 16 01:19:36 | Discover device /sys/devices/virtual/block/dm-0<br>
	Sep 16 01:19:36 | dm-0: not found in pathvec<br>
	Sep 16 01:19:36 | dm-0: device node name blacklisted<br>
	Sep 16 01:19:36 | Discovered 1/2 paths<br>
	===== paths list =====<br>
	uuid                              hcil    dev dev_t pri dm_st chk_st vend/prod<br>
	36f402700db1ed40026166c110c311dcf 0:2:0:0 sda 8:0   1   undef undef  DELL    ,<br>
	Sep 16 01:19:36 | Warning: should_multipath() only based on wwids. dev = sda<br>
	Sep 16 01:19:36 | wwid 36f402700db1ed40026166c110c311dcf not in wwids file, skip                                                            ping sda<br>
	Sep 16 01:19:36 | const prioritizer refcount 1<br>
	Sep 16 01:19:36 | directio checker refcount 1<br>
	Sep 16 01:19:36 | unloading const prioritizer<br>
	Sep 16 01:19:36 | unloading directio checker<br>
	 
</p>

<p>
	Need help please.
</p>

<p>
	 
</p>

<p>
	Regards
</p>

<p>
	Eduard
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="//media.invisioncic.com/r328636/monthly_2022_09/db.png.f7413fcfa09c5834fbcfcd7c6e80d4d9.png" data-fileid="47386" data-fileext="png" rel=""><img alt="db.png" class="ipsImage ipsImage_thumbnailed" data-fileid="47386" width="400" src="//media.invisioncic.com/r328636/monthly_2022_09/db.thumb.png.125b92b4b46fac0f945dfd454f59f835.png" loading="lazy" height="232"></a>
</p>
]]></description><guid isPermaLink="false">249869</guid><pubDate>Thu, 15 Sep 2022 23:31:31 +0000</pubDate></item><item><title>XenServer issue with HP iLO remote desktop keyboard</title><link>https://community.stage.citrix.com/forums/topic/253049-xenserver-issue-with-hp-ilo-remote-desktop-keyboard/</link><description><![CDATA[<p>
	<span style="font-size:11pt;"><span style="font-family:Calibri;">Hi!</span></span><br />
	<span style="background-color:#ffffff;color:#485164;font-size:14px;text-align:left;">With the installation of Citrix XenServer 8 (version of June 4, 2024 but also with the ISO of March 18, 2024), we have the problem that the keyboard input via HP iLO no longer arrives on the server (HP Proliant DL380 GEN11 with AMD). After a reboot of the server it works for about 10 to 15 minutes, after which the keyboard data no longer arrives. The iLO screen is up to date (you can see the time running smoothly). We have already tested installing VMware ESX on the same server, and it continues to work normally. Even the very latest HP iLO/Firmware does not solve the problem so the problem really seems to be in XenServer. We have this issue on multiple servers. There are 30 new servers and we are already experiencing the problem on 5 of them. The remaining 25 servers still need to be set up. Has anyone had this problem before (with, for example, Citrix Hypervisor) and a solution for it?<br />
	Thanx in advance!</span>
</p>
]]></description><guid isPermaLink="false">253049</guid><pubDate>Mon, 01 Jul 2024 13:37:54 +0000</pubDate></item><item><title>XenServer Update failed with error "Syncing with remote YUM repository failed"</title><link>https://community.stage.citrix.com/forums/topic/252898-xenserver-update-failed-with-error-syncing-with-remote-yum-repository-failed/</link><description><![CDATA[<p>
	Hello ,
</p>

<p>
	While updating XenServer 8, i am getting this error. It is running with XenServer 8 (Fresh Installation).
</p>

<p>
	I do not see any known issues as such from the release notes, anyone facing the similar issue ??
</p>

<p>
	<img class="ipsImage ipsImage_thumbnailed" data-fileid="34602" width="692" alt="image.png.b4f5fa396c473a7a08bd99550d04d148.png" src="//media.invisioncic.com/r328636/monthly_2024_05/image.png.b4f5fa396c473a7a08bd99550d04d148.png" loading="lazy" height="173">
</p>
]]></description><guid isPermaLink="false">252898</guid><pubDate>Fri, 03 May 2024 18:06:57 +0000</pubDate></item><item><title>XenServer Network installation - first boot script</title><link>https://community.stage.citrix.com/forums/topic/252527-xenserver-network-installation-first-boot-script/</link><description><![CDATA[<p>
	Hi Everyone
</p>

<p>
	 
</p>

<p>
	I have a quick question regarding a Network installation and the post-install script that can be used to perform post build configuration.
</p>

<p>
	in the past XenServer was used with the initd system of booting, while the latest version uses systemd
</p>

<p>
	the initd used start-up scripts starting with 'S' in the relevant run level folders (rc3.d, rc5.d, etc). That means that the post-install script just needed to copy/link in the relevant scripts to get the first-boot script to run after the reboot of the server after the system build.
</p>

<p>
	Systemd requires you to run a command ("systemd enable &lt;'script.service'&gt;") to enable the bootup scripts to run. So for example the old post-install script might have looked like
</p>

<p>
	 
</p>

<p>
	#!/bin/sh<br>
	touch $1/tmp/post-executed<br>
	wget <a href="http://xs-boot.villafarm.org.uk/first-boot-script.sh" rel="external nofollow">http://192,168.10.100/first-boot-script.sh</a> -O $1/tmp/first-boot-script.sh<br>
	chmod 777 $1/tmp/first-boot-script.sh<br>
	ln -s /tmp/first-boot-script.sh $1/etc/rc3.d/S99zzpostinstall
</p>

<p>
	 
</p>

<p>
	but the new one should look like (where "first-boot-script.service" is the config file to run the bash script)
</p>

<p>
	 
</p>

<p>
	#!/bin/sh<br>
	touch $1/tmp/post-executed<br>
	wget <a href="http://xs-boot.villafarm.org.uk/myscripts/first-boot-script.sh" rel="external nofollow">http://192.168.10.100/first-boot-script.sh</a> -O $1/tmp/first-boot-script.sh<br>
	wget <a href="http://xs-boot.villafarm.org.uk/myscripts/first-boot-script.service.sh" rel="external nofollow">http://</a><a href="http://xs-boot.villafarm.org.uk/myscripts/first-boot-script.sh" rel="external nofollow">192.168.10.100</a><a href="http://xs-boot.villafarm.org.uk/myscripts/first-boot-script.service.sh" rel="external nofollow">/first-boot-script.service.sh</a> -O $1/tmp/first-boot-script.service<br>
	chmod 777 $1/tmp/first-boot-script.sh<br>
	cp $1/tmp/first-boot-script.service $1/etc/systemd/system/first-boot-script.service<br>
	systemctl enable first-boot-script.service
</p>

<p>
	 
</p>

<p>
	unfortunately the last line of the script does not work as the systemd environment has not yet been initialised.
</p>

<p>
	I can either run this last line manually after the system gets rebooted, then reboot a second time (after which it works as expected), or run the /tmp/first-boot-script.sh manually.
</p>

<p>
	 
</p>

<p>
	I'm trying to get the installation to work as automatically/seamlessly as possible, so does anyone know how to enable the service via the post-install script?
</p>

<p>
	 
</p>

<p>
	regards
</p>

<p>
	 
</p>

<p>
	Ken Z
</p>
]]></description><guid isPermaLink="false">252527</guid><pubDate>Mon, 22 Jan 2024 09:35:40 +0000</pubDate></item><item><title>Citrix hypervisor Build and Configuration guide</title><link>https://community.stage.citrix.com/forums/topic/252606-citrix-hypervisor-build-and-configuration-guide/</link><description><![CDATA[<p>
	We were hoping if any one had a build guide for us to accomplish the below using good practice?
</p>

<p>
	 
</p>

<p>
	What we want to do.........
</p>

<p>
	 
</p>

<p>
	Configuration and install Citrix hypervisor using best practice for a 2 site active-active setup isolated from each other.
</p>

<p>
	 
</p>

<ul>
	<li>
		Site DC1: 4 * DC1 hosts with DC1 shared storage
	</li>
	<li>
		Site DC2: 4 * DC2 hosts with DC2 shared storage
	</li>
	<li>
		Both sites will need to connect to Single Shared storage too where we have the master image for building and updated Citrix VDI.
	</li>
	<li>
		The HPE Shared storage at the corresponding DCs will be used to deploy the VDI to and will need to be set so it supports thin provision
	</li>
	<li>
		We have current pool 8 Citrix Hypervisor already using the 8 licences, but we want to do a side by side build  and then migrate users in phases then shut down old, how can we utilise the licenses already to allow this and will it allow the same licenses to be used twice?
	</li>
</ul>

<p>
	 
</p>

<p>
	 
</p>

<p>
	For ease of understanding above please see a diagram of how the above should look on the new setup .
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="png" data-fileid="49179" href="//media.invisioncic.com/r328636/monthly_2024_02/image.png.be7a56d83e6891209d06dd18285d258b.png" rel=""><img alt="image.thumb.png.5cb2cfc502a13500687f54cac563b10d.png" class="ipsImage ipsImage_thumbnailed" data-fileid="49179" width="400" src="//media.invisioncic.com/r328636/monthly_2024_02/image.thumb.png.5cb2cfc502a13500687f54cac563b10d.png" loading="lazy" height="160"></a>
</p>
]]></description><guid isPermaLink="false">252606</guid><pubDate>Tue, 06 Feb 2024 13:10:04 +0000</pubDate></item><item><title>ALTA DISPONIBILIDAD CON CITRIX</title><link>https://community.stage.citrix.com/forums/topic/252556-alta-disponibilidad-con-citrix/</link><description><![CDATA[<p>
	Soy nuevo en citrix estoy realizando un trabajo de investigacion para mi universidad y necesito configurar alta disponibilidad de servidores al momento de usar xencenter me aparece unlisenced y no puedo continuar 
</p>
]]></description><guid isPermaLink="false">252556</guid><pubDate>Sat, 27 Jan 2024 23:13:17 +0000</pubDate></item><item><title>XenServer Network instalaltion failing with "unable to access repository"</title><link>https://community.stage.citrix.com/forums/topic/252494-xenserver-network-instalaltion-failing-with-unable-to-access-repository/</link><description><![CDATA[<p>
	Hi everyone
</p>

<p>
	 
</p>

<p>
	anyone managed to get a XenServer installation onto a HP ProLiant server using PXE/TFTP boot and HTTP source location?
</p>

<p>
	I've got the TFTP boot working as per <a href="https://docs.xenserver.com/en-us/citrix-hypervisor/install/network-boot.html" rel="external nofollow">https://docs.xenserver.com/en-us/citrix-hypervisor/install/network-boot.html</a>
</p>

<p>
	I've also got an answer file configured on a HTTP server which is being read successfully after the TFTP Boot (UEFI Booting with grub.cfg file), but when it comes to the source  location on the same HTTP server, I get an error message "Unable to access repository (url, http://10.1.1.1/XenServer/)" (NOTE the web server is running on 10.1.1.1)
</p>

<p>
	 
</p>

<p>
	If I remove the answerfile entry from grub.cfg so that it becomes a manual installation, and I specify the source location manually as http://10.1.1.1/xenserver/ it comes back with "A base installation repository was not found at that location".
</p>

<p>
	If it point my browser at http://10.1.1.1/xenserver/ is successfully lists the contents of the ISO I copied across (even the .treeinfo file)
</p>

<p>
	 
</p>

<p>
	My lab is a very simple, flat network on a 10.0.0.0/8 address range
</p>

<p>
	Any pointers to where I might be going wrong gratefully received.
</p>

<p>
	 
</p>

<p>
	Regards
</p>

<p>
	 
</p>

<p>
	Ken Z
</p>

<p>
	 
</p>

<p>
	As an aside, anyone know how to get the installer to auto-run once the TFTP boot has occurred? it stops on the grub menu waiting for the user to press Enter
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">252494</guid><pubDate>Fri, 12 Jan 2024 23:01:21 +0000</pubDate></item><item><title>What is needed to backup running VMs in XenCenter</title><link>https://community.stage.citrix.com/forums/topic/251951-what-is-needed-to-backup-running-vms-in-xencenter/</link><description><![CDATA[<p>
	I know within the XenCenter with DR enabled, the pool database is constantly replicated via mirrored storage, and in the event of a disaster at your primary site, VMs and vApps can be recovered from the mirrored storage to a pool on a secondary (DR) site.
</p>

<p>
	 
</p>

<p>
	My questions is what does it take to do it?, What does it requires? Any special hardware requirements? How does it get setup?
</p>
]]></description><guid isPermaLink="false">251951</guid><pubDate>Thu, 07 Sep 2023 18:40:26 +0000</pubDate></item><item><title>Citrix Hypervisor 8.2, 7.0, 7.1.2 will not complete installation, anyone else get this error message?</title><link>https://community.stage.citrix.com/forums/topic/248945-citrix-hypervisor-82-70-712-will-not-complete-installation-anyone-else-get-this-error-message/</link><description><![CDATA[<p>
	Anyone else see this error message trying to install Citrix Hypervisor? 
</p>

<p>
	 
</p>

<p>
	It's on a Lenovo TS140.
</p>

<p>
	 
</p>

<p>
	Ubuntu, Windows 10, ESX, LVM, and any other product installs on the machines without a problem except XenServer AKA Citrix Hypervisor.
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="//media.invisioncic.com/r328636/monthly_2022_05/PXL_20220509_033449137.jpg.58634c29bcd94c51afa39646559055fc.jpg" data-fileid="46873" data-fileext="jpg" rel=""><img alt="PXL_20220509_033449137.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="46873" width="400" src="//media.invisioncic.com/r328636/monthly_2022_05/PXL_20220509_033449137.thumb.jpg.639b116656240dd9bb9a164e95c5e3b9.jpg" loading="lazy" height="300"></a>
</p>
]]></description><guid isPermaLink="false">248945</guid><pubDate>Fri, 13 May 2022 21:49:01 +0000</pubDate></item><item><title>Troubleshooting MPIO Issue on Xen Hypervisor 8.2 CU1 with iSCSI Windows Server 2019 Storage Following Update XS82ECU1034</title><link>https://community.stage.citrix.com/forums/topic/251732-troubleshooting-mpio-issue-on-xen-hypervisor-82-cu1-with-iscsi-windows-server-2019-storage-following-update-xs82ecu1034/</link><description><![CDATA[<p>
	Good day, I'm facing the following problem. We're using Xen Hypervisor version 8.2 CU1 and Windows Server 2019 as our storage. The Windows Storage provides an iSCSI disk for the Hypervisor. The Hypervisor is connected to two hosts via a 2 port Intel 10 Gb card over a switch. Each channel is connected separately into a VLAN. The problem started with the last update. After that, we can see in the Windows Task Manager that no data is being transferred over one channel. If you deactivate the port over which the data is being transferred, after a short while, data begins to be transferred over the second port, which previously showed no activity. Everything was functioning fine before the last update. The last update installed was XS82ECU1034. I now have the same problem with a second client. It appears that the data is no longer being simultaneously transferred over the two channels, but only when the other channel fails. I need help figuring out what to do
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" data-fileext="png" data-fileid="48568" href="//media.invisioncic.com/r328636/monthly_2023_07/Screenshot2023-07-24171801.png.12c52f6ecc13b055b96fd47770893021.png" rel=""><img alt="Screenshot 2023-07-24 171801.png" class="ipsImage ipsImage_thumbnailed" data-fileid="48568" width="400" src="//media.invisioncic.com/r328636/monthly_2023_07/Screenshot2023-07-24171801.thumb.png.631bb74fb29323cd27f02f1fcfe95f29.png" loading="lazy" height="204"></a>
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="//media.invisioncic.com/r328636/monthly_2023_07/Screenshot2023-07-24171549.png.187e19f4c5a0ec2e4d4ce8b03e105419.png" data-fileid="48569" data-fileext="png" rel=""><img alt="Screenshot 2023-07-24 171549.png" class="ipsImage ipsImage_thumbnailed" data-fileid="48569" width="400" src="//media.invisioncic.com/r328636/monthly_2023_07/Screenshot2023-07-24171549.thumb.png.4757527bbd3c6fc7becf6434d01bbe7c.png" loading="lazy" height="192"></a>
</p>

<p><a href="//media.invisioncic.com/r328636/monthly_2023_07/Screenshot2023-07-24171327.png.4052813c02ef08fb6126957fd112eb14.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="48570" src="//media.invisioncic.com/r328636/monthly_2023_07/Screenshot2023-07-24171327.thumb.png.dbde562dcebaee9471c654c41a7e15d4.png" width="400" class="ipsImage ipsImage_thumbnailed" alt="Screenshot 2023-07-24 171327.png" loading="lazy" height="112"></a></p>]]></description><guid isPermaLink="false">251732</guid><pubDate>Mon, 24 Jul 2023 15:20:57 +0000</pubDate></item></channel></rss>
