1. grub ayarlamasi yapılır ve grub ayar dosyası yeniden oluşturulur.
[root@oradb-oel-7-node1 ~]# grep CMDLINE /etc/default/grub
# GRUB_CMDLINE_LINUX="rd.lvm.lv=ol/root rd.lvm.lv=ol/swap rhgb quiet"
GRUB_CMDLINE_LINUX="rd.lvm.lv=ol/root rd.lvm.lv=ol/swap rhgb crashkernel=auto vconsole.keymap=us net.ifnames=0 biosdevname=0"
[root@oradb-oel-7-node1 ~]#
grub2-mkconfig -o /boot/grub2/grub.cfg
2. /etc/sysconfig/network-scripts/ dizini içerisinde ağ arabirimimiz yeniden adlandırılır.
mv ifcfg-enp0s3 ifcfg-lan0
[root@oradb-oel-7-node1 network-scripts]# cat ifcfg-lan0
TYPE=Ethernet
BOOTPROTO=none
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
IPV6_AUTOCONF=no
IPV6_DEFROUTE=no
IPV6_PEERDNS=no
IPV6_PEERROUTES=no
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=lan0
DEVICE=lan0
ONBOOT=yes
IPADDR=192.168.253.71
PREFIX=24
GATEWAY=192.168.253.254
DNS1=192.168.253.254
DOMAIN=localdomain.org
HWADDR=08:00:27:75:5a:01
HWADDR satırı doğru olmalı.
Sonrasında sistemimiz yeniden başlattığımızda artık enp0s3 diye bir ağ kartı görmüyoruz.
24 Ocak 2018 Çarşamba
21 Ocak 2018 Pazar
ubuntu 16.04 de ağ kartını yeniden isimlendirmek
Yeni linux sürümlerinde ağ kartlarının isme ethX yerine enp1d1S0 gibi gelmekte.
Böyle uzun uzun akılda kalmayacak isimler olunca, niye yeniden isimlendirmeyelim?
Öncelikle /etc/udev/rules.d/70-persistent-net.rules dosyasını oluşturuyoruz.
Dosyanın içerisine ağ kartımızla ilgili bilgileri ve yeni ismini belirtiyoruz.
Örnek satır aşağıda;
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="8c:ec:4b:02:be:c3", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="wan0"
mac adresi önemlidir. Tanım yaparken mac adresini doğru yazmamız gerekiyor.
Bundan sonra /etc/default/grub dosyasına aşağıdaki parametreleri ilave ediyor
# GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
sonrasında update-grub komutunu çalıştırıp sistemi yeniden başlatıyoruz.
Sistemimiz açıldığında artık yeni ismini kullanabiliriz.
root@ubuntu:~# ifconfig wan0
wan0 Link encap:Ethernet HWaddr 8c:ec:4b:02:be:c3
inet addr:172.16.0.47 Bcast:172.16.0.255 Mask:255.255.255.0
inet6 addr: fe80::ecb4:b8:16f2:4176/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2740 errors:0 dropped:0 overruns:0 frame:0
TX packets:2120 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1734552 (1.7 MB) TX bytes:325068 (325.0 KB)
root@ubuntu:~# grep net.ifnames /etc/default/grub; cat /etc/udev/rules.d/70-persistent-net.rules
GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="8c:ec:4b:02:be:c3", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="wan0"
root@ubuntu:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.3 LTS
Release: 16.04
Codename: xenial
root@ubuntu:~#
Linux ubuntu 4.13.0-26-generic #29~16.04.2-Ubuntu SMP Tue Jan 9 22:00:44 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
son olarak initramfs update etmek faydalı olur. Bunun için;
# update-initramfs -u
çalıştırmamız yeterli olur.
Bu aşamalardan sonra sistemi yeniden başlatabiliriz.
Böyle uzun uzun akılda kalmayacak isimler olunca, niye yeniden isimlendirmeyelim?
Öncelikle /etc/udev/rules.d/70-persistent-net.rules dosyasını oluşturuyoruz.
Dosyanın içerisine ağ kartımızla ilgili bilgileri ve yeni ismini belirtiyoruz.
Örnek satır aşağıda;
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="8c:ec:4b:02:be:c3", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="wan0"
mac adresi önemlidir. Tanım yaparken mac adresini doğru yazmamız gerekiyor.
Bundan sonra /etc/default/grub dosyasına aşağıdaki parametreleri ilave ediyor
# GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
sonrasında update-grub komutunu çalıştırıp sistemi yeniden başlatıyoruz.
Sistemimiz açıldığında artık yeni ismini kullanabiliriz.
root@ubuntu:~# ifconfig wan0
wan0 Link encap:Ethernet HWaddr 8c:ec:4b:02:be:c3
inet addr:172.16.0.47 Bcast:172.16.0.255 Mask:255.255.255.0
inet6 addr: fe80::ecb4:b8:16f2:4176/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2740 errors:0 dropped:0 overruns:0 frame:0
TX packets:2120 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:1734552 (1.7 MB) TX bytes:325068 (325.0 KB)
root@ubuntu:~# grep net.ifnames /etc/default/grub; cat /etc/udev/rules.d/70-persistent-net.rules
GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="8c:ec:4b:02:be:c3", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="wan0"
root@ubuntu:~# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.3 LTS
Release: 16.04
Codename: xenial
root@ubuntu:~#
Linux ubuntu 4.13.0-26-generic #29~16.04.2-Ubuntu SMP Tue Jan 9 22:00:44 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
son olarak initramfs update etmek faydalı olur. Bunun için;
# update-initramfs -u
çalıştırmamız yeterli olur.
Bu aşamalardan sonra sistemi yeniden başlatabiliriz.
28 Kasım 2017 Salı
basit disk okuma/yazma testi (bonnie)
bonnie++ -c 16 -s 4196 -n 1 -r 128 -m db01 -x 2 -u root | bon_csv2html > /tmp/report.html
15 Kasım 2017 Çarşamba
IBM PowerVM - RedHat linux üzerine kurulması gereken paketler ve çalışması gereken servisler
PowerVM (LPAR) olarak Red Hat linux 7 yüklediğimizde, işletim sistemini izlemek ve tam olarak yönetebilmek(Hafıza(ram) artırımı/azaltımı, cpu core sayısı artırımı/azaltımı, sistem performanısı) aşağıdaki paketleri yüklememiz gerekmektedir.
Öncelikle;
rpm -ivh http://public.dhe.ibm.com/software/server/POWER/Linux/yum/OSS/RHEL/7/ppc64/ibm-power-repo-3.0.0-17.noarch.rpm
yum update yaptıktan sonra
yum install DynamicRM.ppc64 \
rsct.core.utils-3.2.2.3-17144.ppc64 \
rsct.core-3.2.2.3-17144.ppc64 \
rsct.opt.storagerm-3.2.2.3-17144.ppc64 \
rsct.basic-3.2.2.3-17144.ppc64 \
src-3.2.2.3-17144.ppc64 \
ibmPMLinux-3.5.1-1.ppc64
gerekli ibm araçlarını yüklüyoruz.
Yuklüme işleminden sonra aşağıdaki komutu çalıştırmamız gerekiyor.
# /usr/sbin/rsct/install/bin/recfgct
Şayet yukarıdaki komutu çalıştırmadığımızda bazı servisler aktif olmuyor ve HMC RedHat vm'i kontrol edemiyor.
Kurulumdan sonra; lssrc ile kontrol yaptığımızda aşağıdaki servisleri aktif olarak görmemiz gerekir.
[root@rhel7repo ~]# lssrc -g rsct_rm
Subsystem Group PID Status
IBM.MgmtDomainRM rsct_rm 4336 active
IBM.ERRM rsct_rm 4450 active
IBM.AuditRM rsct_rm 4482 active
IBM.DRM rsct_rm 4493 active
IBM.HostRM rsct_rm 4504 active
IBM.SensorRM rsct_rm 4626 active
[root@rhel7repo ~]#
systemctl ile de aşağıdaki servislerin düzgün çalışıp çalışmadığını kontrol edebiliriz.
ctrmc.service
ibm servisleri:
rtas_errd.service
srcmstr.service
PMLinux.service
Servislerde aksaklık olursa aşağıdaki linkleri inceleyebilirsiniz;
https://www.ibm.com/developerworks/community/blogs/talor/entry/restartrmc?lang=en
https://www.ibm.com/developerworks/community/blogs/cgaix/entry/february_24_2011_6_51_pm79?lang=en
Oracle Solaris 11.3 Support Repository Updates (SRU) Index (Doc ID 2045311.1)
In this Document
| Main Content |
| References |
Applies to:
Solaris Operating System - Version 11.2 and laterInformation in this document applies to any platform.
Main Content
This document lists Service Alerts affecting each Oracle Solaris 11.3 Support Repository Update (SRU).It will be updated as and when a Service Alert issue is found in an SRU
| Oracle Solaris SRU | Service Alert Issue |
| 11.3.17.5.0 | For Solaris 11.3.12.4.0 through 11.3.17.5.0, NFSv4 mount(1M) Commands Fail to Display Numerical Data - Doc ID 2240085.1 (Bug 24817001, Bug 24809831, Bug 24802866) For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 ' logindmux" may Report a Harmless Error When Connecting From Another System using telnet(1) - Doc ID 2232661.1 (Bug 25403716) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.16.30 | For Solaris 11.3.12.4.0 through 11.3.17.5.0, NFSv4 mount(1M) Commands Fail to Display Numerical Data - Doc ID 2240085.1 (Bug 24817001, Bug 24809831, Bug 24802866) Solaris Cluster 4.3.* Global File system (PxFS) Non-root Read/Write Operations on a Non-Primary Node may Fail if One Cluster is running Solaris 11.3.11.6.0 (or later) while another Node in the Cluster is running 11.3.10.7.0 (or earlier) - DocID2221807.1(Bug 25298429) For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 ' logindmux" may Report a Harmless Error When Connecting From Another System using telnet(1) - Doc ID 2232661.1 (Bug 25403716) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.15.4.0 | For Solaris 11.3.12.4.0 through 11.3.17.5.0, NFSv4 mount(1M) Commands Fail to Display Numerical Data - Doc ID 2240085.1 (Bug 24817001, Bug 24809831, Bug 24802866) Solaris Cluster 4.3.* Global File system (PxFS) Non-root Read/Write Operations on a Non-Primary Node may Fail if One Cluster is running Solaris 11.3.11.6.0 (or later) while another Node in the Cluster is running 11.3.10.7.0 (or earlier) - Doc ID 2221807.1 (Bug 25298429) For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.14.6.0 | For Solaris 11.3.12.4.0 through 11.3.17.5.0, NFSv4 mount(1M) Commands Fail to Display Numerical Data - Doc ID 2240085.1 (Bug 24817001, Bug 24809831, Bug 24802866) Solaris Cluster 4.3.* Global File system (PxFS) Non-root Read/Write Operations on a Non-Primary Node may Fail if One Cluster is running Solaris 11.3.11.6.0 (or later) while another Node in the Cluster is running 11.3.10.7.0 (or earlier) - Doc ID 2221807.1 (Bug 25298429) For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.13.4.0 | For Solaris 11.3.12.4.0 through 11.3.17.5.0, NFSv4 mount(1M) Commands Fail to Display Numerical Data - Doc ID 2240085.1 (Bug 24817001, Bug 24809831, Bug 24802866) Solaris Cluster 4.3.* Global File system (PxFS) Non-root Read/Write Operations on a Non-Primary Node may Fail if One Cluster is running Solaris 11.3.11.6.0 (or later) while another Node in the Cluster is running 11.3.10.7.0 (or earlier) - DocID 2221807.1 (Bug 25298429) For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) Solaris 11.3.13.4.0 may Erroneously Experience I/O Failure When All Active/Optimized Paths Become Offline - Doc ID 2201386.1 (Bug 24913570) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
11.3.12.4.0 | For Solaris 11.3.12.4.0 through 11.3.17.5.0, NFSv4 mount(1M) Commands Fail to Display Numerical Data - Doc ID 2240085.1 (Bug 24817001, Bug 24809831, Bug 24802866) Solaris Cluster 4.3.* Global File system (PxFS) Non-root Read/Write Operations on a Non-Primary Node may Fail if One Cluster is running Solaris 11.3.11.6.0 (or later) while another Node in the Cluster is running 11.3.10.7.0 (or earlier) - Doc ID 2221807.1 (Bug 25298429) For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) Solaris 11 may Experience RAC Node Evictions Due to Slowness in Kernel Memory Allocations - Doc ID 2213222.1 (Bug 22471289) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) SunOS 4.x Binaries Fail to Run in Solaris 10 Branded Zones on Solaris 11.3.1.5.0 through 11.3.12.4.0 - Doc ID 2187794.1 (Bug 22455418) SPARC T4, T5/M5/M6 or T7/S7/M7 Platforms Configured Explicitly for Cross-CPU Migration may Experience Memory Corruption in Oracle VM Server for SPARC Guest Domains and Kernel Zones - Doc ID 2179881.1 (Bug 23731895) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) Solaris 11 (x86) and ZFSSA Software may Experience a BAD TRAP Panic on Boot Which may Prevent a Crash Dump from Being Saved - Doc ID 2179100.1 (Bug 15858870) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.11.6.0 | Solaris Cluster 4.3.* Global File system (PxFS) Non-root Read/Write Operations on a Non-Primary Node may Fail if One Cluster is running Solaris 11.3.11.6.0 (or later) while another Node in the Cluster is running 11.3.10.7.0 (or earlier) - Doc ID 2221807.1 (Bug 25298429) For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) SunOS 4.x Binaries Fail to Run in Solaris 10 Branded Zones on Solaris 11.3.1.5.0 through 11.3.12.4.0 - Doc ID 2187794.1 (Bug 22455418) SPARC T4, T5/M5/M6 or T7/S7/M7 Platforms Configured Explicitly for Cross-CPU Migration may Experience Memory Corruption in Oracle VM Server for SPARC Guest Domains and Kernel Zones - Doc ID 2179881.1 (Bug 23731895) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) Solaris 11 (x86) and ZFSSA Software may Experience a BAD TRAP Panic on Boot Which may Prevent a Crash Dump from Being Saved - Doc ID 2179100.1 (Bug 15858870) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.10.7.0 | NOTE - A New 'Firmware Check' Service in Solaris 11.3.10.5.0 Generates a FATAL Error Message and goes into Maintenance Mode if the System Firmware Version is not the Latest Release - Doc ID 2168080.1 (Bug 24348966) For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) SunOS 4.x Binaries Fail to Run in Solaris 10 Branded Zones on Solaris 11.3.1.5.0 through 11.3.12.4.0 - Doc ID 2187794.1 (Bug 22455418) SPARC T4, T5/M5/M6 or T7/S7/M7 Platforms Configured Explicitly for Cross-CPU Migration may Experience Memory Corruption in Oracle VM Server for SPARC Guest Domains and Kernel Zones - Doc ID 2179881.1 (Bug 23731895) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) Solaris 11 (x86) and ZFSSA Software may Experience a BAD TRAP Panic on Boot Which may Prevent a Crash Dump from Being Saved - Doc ID 2179100.1 (Bug 15858870) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.9.4.0 | For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) SunOS 4.x Binaries Fail to Run in Solaris 10 Branded Zones on Solaris 11.3.1.5.0 through 11.3.12.4.0 - Doc ID 2187794.1 (Bug 22455418) SPARC T4, T5/M5/M6 or T7/S7/M7 Platforms Configured Explicitly for Cross-CPU Migration may Experience Memory Corruption in Oracle VM Server for SPARC Guest Domains and Kernel Zones - Doc ID 2179881.1 (Bug 23731895) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) Solaris 11 (x86) and ZFSSA Software may Experience a BAD TRAP Panic on Boot Which may Prevent a Crash Dump from Being Saved - Doc ID 2179100.1 (Bug 15858870) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.8.7.0 | For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) SunOS 4.x Binaries Fail to Run in Solaris 10 Branded Zones on Solaris 11.3.1.5.0 through 11.3.12.4.0 - Doc ID 2187794.1 (Bug 22455418) SPARC T4, T5/M5/M6 or T7/S7/M7 Platforms Configured Explicitly for Cross-CPU Migration may Experience Memory Corruption in Oracle VM Server for SPARC Guest Domains and Kernel Zones - Doc ID 2179881.1 (Bug 23731895) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) Solaris 11 (x86) and ZFSSA Software may Experience a BAD TRAP Panic on Boot Which may Prevent a Crash Dump from Being Saved - Doc ID 2179100.1 (Bug 15858870) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Solaris 11.1.0.24.2 or later May Experience a BAD TRAP System Panic in lgrp_get_policy_flr() - Doc ID 2059821.1 (Bug 18406151) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.7.6.0 | For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) Solaris 11 may Experience RAC Node Evictions Due to Slowness in Kernel Memory Allocations - Doc ID 2213222.1 (Bug 22471289) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) SunOS 4.x Binaries Fail to Run in Solaris 10 Branded Zones on Solaris 11.3.1.5.0 through 11.3.12.4.0 - Doc ID 2187794.1 (Bug 22455418) SPARC T4, T5/M5/M6 or T7/S7/M7 Platforms Configured Explicitly for Cross-CPU Migration may Experience Memory Corruption in Oracle VM Server for SPARC Guest Domains and Kernel Zones - Doc ID 2179881.1 (Bug 23731895) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) Solaris 11 (x86) and ZFSSA Software may Experience a BAD TRAP Panic on Boot Which may Prevent a Crash Dump from Being Saved - Doc ID 2179100.1 (Bug 15858870) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience a System Panic in stmf_ts_xfer_restart() - Doc ID 2161074.1 (Bug 22081482) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Solaris 11.1.0.24.2 or later May Experience a BAD TRAP System Panic in lgrp_get_policy_flr() - Doc ID 2059821.1 (Bug 18406151) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.7.5.0 | NOTE: Solaris 11.3.7.5.0 has been removed from the Support Repository - please install S11.3.7.6.0 |
| 11.3.6.5.0 | For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) Regression in Solaris 11.3.5.6.0 and 11.3.6.5.0 Doc ID 2225462.1 (22860059)Solaris 11 may Experience RAC Node Evictions Due to Slowness in Kernel Memory Allocations - Doc ID 2213222.1 (Bug 22471289) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) SunOS 4.x Binaries Fail to Run in Solaris 10 Branded Zones on Solaris 11.3.1.5.0 through 11.3.12.4.0 - Doc ID 2187794.1 (Bug 22455418) SPARC T4, T5/M5/M6 or T7/S7/M7 Platforms Configured Explicitly for Cross-CPU Migration may Experience Memory Corruption in Oracle VM Server for SPARC Guest Domains and Kernel Zones - Doc ID 2179881.1 (Bug 23731895) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) Solaris 11 (x86) and ZFSSA Software may Experience a BAD TRAP Panic on Boot Which may Prevent a Crash Dump from Being Saved - Doc ID 2179100.1 (Bug 15858870) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience a System Panic in stmf_ts_xfer_restart() - Doc ID 2161074.1 (Bug 22081482) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Systems With Solaris Volume Manager (SVM) Configured Disks may Experience SVM Replica Corruption When Swapping a Failed Disk Drive Used by the SVM Configuration - Doc ID 2150605.1 (Bug 22065674) Solaris 11 Systems may Experience UFS File System Data Integrity Issues Which may Fail to be Reported - Doc ID 2109480.1 (Bug 21614354) Solaris 11.1.0.24.2 or later May Experience a BAD TRAP System Panic in lgrp_get_policy_flr() - Doc ID 2059821.1 (Bug 18406151) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.5.6.0 | For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) Regression in Solaris 11.3.5.6.0 and 11.3.6.5.0 Doc ID 2225462.1 (22860059)Solaris 11 may Experience RAC Node Evictions Due to Slowness in Kernel Memory Allocations - Doc ID 2213222.1 (Bug 22471289) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) SunOS 4.x Binaries Fail to Run in Solaris 10 Branded Zones on Solaris 11.3.1.5.0 through 11.3.12.4.0 - Doc ID 2187794.1 (Bug 22455418) SPARC T4, T5/M5/M6 or T7/S7/M7 Platforms Configured Explicitly for Cross-CPU Migration may Experience Memory Corruption in Oracle VM Server for SPARC Guest Domains and Kernel Zones - Doc ID 2179881.1 (Bug 23731895) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) Solaris 11 (x86) and ZFSSA Software may Experience a BAD TRAP Panic on Boot Which may Prevent a Crash Dump from Being Saved - Doc ID 2179100.1 (Bug 15858870) ZFS Storage Appliance (ZFSSA) Software may Experience a Deadlock in 'spa_config_enter' - Doc ID 2167737.1 (Bug 22264028 ) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience a System Panic in stmf_ts_xfer_restart() - Doc ID 2161074.1 (Bug 22081482) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Systems With Solaris Volume Manager (SVM) Configured Disks may Experience SVM Replica Corruption When Swapping a Failed Disk Drive Used by the SVM Configuration - Doc ID 2150605.1 (Bug 22065674) Solaris 11 Systems may Experience UFS File System Data Integrity Issues Which may Fail to be Reported - Doc ID 2109480.1 (Bug 21614354) Solaris 11.1.0.24.2 or later May Experience a BAD TRAP System Panic in lgrp_get_policy_flr() - Doc ID 2059821.1 (Bug 18406151) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.4.5.0 | For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 Systems using ZFS Pools Built on TRIM or SCSI Unmap Capable AF Disks may Experience Application Crashes, Data File Integrity Issues and/or System Panics Doc ID 2231651.1 (Bug 23261438) Solaris 11 may Experience RAC Node Evictions Due to Slowness in Kernel Memory Allocations - Doc ID 2213222.1 (Bug 22471289) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) SunOS 4.x Binaries Fail to Run in Solaris 10 Branded Zones on Solaris 11.3.1.5.0 through 11.3.12.4.0 - Doc ID 2187794.1 (Bug 22455418) SPARC T4, T5/M5/M6 or T7/S7/M7 Platforms Configured Explicitly for Cross-CPU Migration may Experience Memory Corruption in Oracle VM Server for SPARC Guest Domains and Kernel Zones - Doc ID 2179881.1 (Bug 23731895) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) Solaris 11 (x86) and ZFSSA Software may Experience a BAD TRAP Panic on Boot Which may Prevent a Crash Dump from Being Saved - Doc ID 2179100.1 (Bug 15858870) ZFS Storage Appliance (ZFSSA) Software may Experience a Deadlock in 'spa_config_enter' - Doc ID 2167737.1 (Bug 22264028) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience a System Panic in stmf_ts_xfer_restart() - Doc ID 2161074.1 (Bug 22081482) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Systems With Solaris Volume Manager (SVM) Configured Disks may Experience SVM Replica Corruption When Swapping a Failed Disk Drive Used by the SVM Configuration - Doc ID 2150605.1 (Bug 22065674) Solaris 11 Systems may Experience UFS File System Data Integrity Issues Which may Fail to be Reported - Doc ID 2109480.1 (Bug 21614354) Solaris 11.1.0.24.2 or later May Experience a BAD TRAP System Panic in lgrp_get_policy_flr() - Doc ID 2059821.1 (Bug 18406151) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.3.6.0 | For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 may Experience RAC Node Evictions Due to Slowness in Kernel Memory Allocations - Doc ID 2213222.1 (Bug 22471289) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) SunOS 4.x Binaries Fail to Run in Solaris 10 Branded Zones on Solaris 11.3.1.5.0 through 11.3.12.4.0 - Doc ID 2187794.1 (Bug 22455418) SPARC T4, T5/M5/M6 or T7/S7/M7 Platforms Configured Explicitly for Cross-CPU Migration may Experience Memory Corruption in Oracle VM Server for SPARC Guest Domains and Kernel Zones - Doc ID 2179881.1 (Bug 23731895) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) Solaris 11 (x86) and ZFSSA Software may Experience a BAD TRAP Panic on Boot Which may Prevent a Crash Dump from Being Saved - Doc ID 2179100.1 (Bug 15858870) ZFS Storage Appliance (ZFSSA) Software may Experience a Deadlock in 'spa_config_enter' - Doc ID 2167737.1 (Bug 22264028) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience a System Panic in stmf_ts_xfer_restart() - Doc ID 2161074.1 (Bug 22081482) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Systems With Solaris Volume Manager (SVM) Configured Disks may Experience SVM Replica Corruption When Swapping a Failed Disk Drive Used by the SVM Configuration - Doc ID 2150605.1 (Bug 22065674) Solaris 11 Systems may Experience UFS File System Data Integrity Issues Which may Fail to be Reported - Doc ID 2109480.1 (Bug 21614354) Solaris 11.1.0.24.2 or later May Experience a BAD TRAP System Panic in lgrp_get_policy_flr() - Doc ID 2059821.1 (Bug 18406151) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) |
| 11.3.2.4.0 | For Solaris 11.2.0.42.0 and Later, Network Data Transmitted from a Kernel Zone May Become Corrupted - Doc ID 2236059.1 (Bug 22618896) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience an ARP Storm When There are Two Systems With Duplicate IP Addresses - Doc ID 2237068.1 (Bug 24655191) Solaris 11 may Experience RAC Node Evictions Due to Slowness in Kernel Memory Allocations - Doc ID 2213222.1 (Bug 22471289) syslogd(1M) may Report a Harmless I/O Error During System or Zone Shutdown - Doc ID 2194147.1 (Bug 167362800) On Solaris 11.3.1.5.0 or Later, Use of ZFS ARC may Cause System Panics and Performance Issues Leading to Hangs - Doc ID 2192534.1 (Bug 21748206, Bug 23005679) SunOS 4.x Binaries Fail to Run in Solaris 10 Branded Zones on Solaris 11.3.1.5.0 through 11.3.12.4.0 - Doc ID 2187794.1 (Bug 22455418) SPARC T4, T5/M5/M6 or T7/S7/M7 Platforms Configured Explicitly for Cross-CPU Migration may Experience Memory Corruption in Oracle VM Server for SPARC Guest Domains and Kernel Zones - Doc ID 2179881.1 (Bug 23731895) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) May Experience a System Panic in list_remove - Doc ID 2173984.1 (Bug 22866463) Solaris 11 and ZFSSA Software Using SMB (smbd(1M)) With 'Oplocks' Enabled may Experience a Panic When Upgrading to SMB2.1 - Doc ID 2178184.1 (22443845) ZFSSA Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in smb_oplock_compute_max_level() - Doc ID 2174622.1 (Bug 22765054) Solaris 11 (x86) and ZFSSA Software may Experience a BAD TRAP Panic on Boot Which may Prevent a Crash Dump from Being Saved - Doc ID 2179100.1 (Bug 15858870) ZFS Storage Appliance (ZFSSA) Software may Experience a Deadlock in 'spa_config_enter' - Doc ID 2167737.1 (Bug 22264028) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience a System Panic in stmf_ts_xfer_restart() - Doc ID 2161074.1 (Bug 22081482) ZFS Storage Appliance (ZFSSA) Software and Solaris 11 Using SMB (smbd(1M)) may Experience a System Panic in crgetsid() - Doc ID 2157019.1 (Bug 19388486) Systems With Solaris Volume Manager (SVM) Configured Disks may Experience SVM Replica Corruption When Swapping a Failed Disk Drive Used by the SVM Configuration - Doc ID 2150605.1 (Bug 22065674) Solaris 11 Systems may Experience UFS File System Data Integrity Issues Which may Fail to be Reported - Doc ID 2109480.1 (Bug 21614354) Using snoop(1M), tshark(1) or tcpdump(1) for Capturing Packets Over IP Layer Devices may Cause Loss of TCP Connectivity or a System Panic - Doc ID 2100341.1 (Bug 20847307) The linking install stage of Enterprise Business Suite will fail on Solaris 11.3 - Service Alert pending (Bug 22203729) Solaris 11.1.0.24.2 or later May Experience a BAD TRAP System Panic in lgrp_get_policy_flr() - Doc ID 2059821.1 (Bug 18406151) A Deadlock Condition in Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Cause the System to Experience a Hang or Panic - Doc ID 2056144.1 (Bug 20020908) Java 6u101, 7u85 and 8u51 and Later Releases Break Enterprise Manager Ops Center Agent Controller to Proxy Communication - Doc ID 2046582.1 (Bug 21464720) Infiniband Switch Reboot May Cause Database Crash or Node Eviction on SuperCluster - Doc ID 2044894.1 (Bug 21417505) Kernel-Level Cryptographic Framework Daemon (see kcfd(1M)) Crashes in Branded Zones - Doc ID 2019145.1 (Bug 20425782) |
Here is the list of Known Issues that affect SRUs but are not bugs in Solaris
| Know Issues |
| ZFSSA Software and Solaris 11 IPoIB Data Links may Stall When High RMAN Backup Loads are Run From Linux 2.6 Based Client Nodes - Doc ID 2214369.1 (Bug 24364712)OpenSSL Connections may Fail during Handshake Phase from Solaris 11.3.5.6.0 - Doc ID 2128320.1 (Bug 22603686, Bug 22852190) Solaris 11.2.8.4.0 and Later Releases may Cause a System Panic for Systems Using Third Party Kernel Drivers - Doc ID 2111676.1 (Bug 22319453) OpenSSH Upgrade in Solaris 11.3.5.6.0 Changes ssh(1) Behavior for Systems not Using the Default SunSSH - Doc ID 2105901.1 (Bug 21696247) Python 2.6 or 2.7 may Hang When Performing fread() on a pty(7D) - Doc ID 2014111.1 (Bug 19221188) Solaris 11 and ZFS Storage Appliance (ZFSSA) Software may Experience a 'smbd' Core Dump - Doc ID 2036896.1 (Bug 16313665) Applications Using NSS 3.14 or Later, Including the Solaris Naming Service LDAP Client, May Fail When Using MD5 Signed Certificates - Doc ID 1916536.1 (Bug 19274108) Solaris 11.2 Cannot be Installed on Systems Running Solaris Cluster 4.1.7.2.0 or Earlier - Doc ID 1913224.1 (Bug 18443844) ZFSSA Using the Network Data Management Protocol (NDMP) Will Fail to Backup Files and Directories With Inodes Greater Than 2^30 - Doc ID 1666311.1 (Bug 17612702) Guest Domains on T5 and M5 Systems may Experience Data Corruption, Hangs or Panics when Live Migrated - Doc ID 1567076.1 (Bug 16911848) |
Kaydol:
Kayıtlar (Atom)
-
Systemd ile Linux Sistem Kaynak Yönetimi: RHEL 7/8/9/10 Kapsamlı Rehberi Giriş Modern Linux dağıtımlarının neredeyse tamamı systemd servis...
-
🔒 SSH Servisini OOM Killer'dan Koruma Rehberi 📑 İçerik 1. Giriş 2. OOM Killer Nedir? 3. SSH ve OOM Killer İlişkisi 4. Çözü...
-
RHEL tabanlı her hangi bir sistemde felaket durumunda kurtarma modunda açtığımızda chroot yapmadan önce aşağıdaki bağlantı işlemlerini yapma...