You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/intro_release_notes/release_notes/known_issues.rst
+58Lines changed: 58 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,64 @@ Sunstone
32
32
- Guacamole RDP as is currently shipped in OpenNebula does not support NLA authentication. You can follow `these instructions <https://www.parallels.com/blogs/ras/disabling-network-level-authentication/>`__ in order to disable NLA in the Windows box to use Guacamole RDP within Sunstone.
33
33
- Creating a VM with SPICE graphics, on Alma9, will cause the VM to stay on FAILED state.
34
34
35
+
.. warning:: Ruby Sunstone fails to start on newer distributions (e.g, Ubuntu 24.04), due to a breaking change introduced in `Psych 4.0 <https://github.com/ruby/psych/releases/tag/v4.0.0>`_. In order to circumvent this you can download two patches from `here <https://bit.ly/one-68-rsunstone_patches>`__.
36
+
37
+
38
+
They can then be applied by following these steps:
39
+
40
+
1. **Download the Patches**
41
+
42
+
Save the two patch files from the provided link to a temporary directory on your system, e.g., ``/tmp``.
43
+
44
+
2. **Apply the `sunstone-server.rb` Patch**
45
+
46
+
- **Navigate to the Sunstone Directory**
47
+
48
+
::
49
+
50
+
cd /usr/lib/one/sunstone
51
+
52
+
- **Backup the Original File**
53
+
54
+
::
55
+
56
+
cp sunstone-server.rb sunstone-server.rb.bak
57
+
58
+
- **Apply the Patch**
59
+
60
+
::
61
+
62
+
patch < /tmp/sunstone-server.patch
63
+
64
+
3. **Apply the `SunstoneViews.rb` Patch**
65
+
66
+
- **Navigate to the Models Directory**
67
+
68
+
::
69
+
70
+
cd /usr/lib/one/sunstone/models
71
+
72
+
- **Backup the Original File**
73
+
74
+
::
75
+
76
+
cp SunstoneViews.rb SunstoneViews.rb.bak
77
+
78
+
- **Apply the Patch**
79
+
80
+
::
81
+
82
+
patch < /tmp/SunstoneViews.patch
83
+
84
+
4. **Restart the Sunstone Service**
85
+
86
+
After applying the patches, restart the Sunstone service to apply the changes:
0 commit comments