Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ASM disks not visible once server is rebooted

AimanKJan 26 2022 — edited Jan 26 2022

I have RAC 19c with 2 nodes 19.3 database on linux 7.8 servers.
the issue is the following:
whenever the servers are rebooted (gracefully of abnormally) the cluster wont come up until issue the command "oracleasm scandisks " manually, only but then the cluster would be able to start again.
the same issue happened on another RAC system (installed recently) and the issue is reproducible on it.
i followed the documentation with no success
Oracle Linux 7: ASM Disks Created on FCOE Target Disks are Not Visible After System Reboot ( Doc ID 2065945.1 )
Oracleasm Is Not Showing ASM Disks After Reboot ( Doc ID 2043733.1 )
Regards

Comments

Steve.Clamage-Oracle

This question really belongs in the Solaris Studio C/C++/Fortran Compilers forum:

https://community.oracle.com/community/server_%26_storage_systems/systems-development-and-management-tools/application_d…

You don't show how you are building your program, and you don't say which version of Studio you are using, or the platform you are using. All of this data is important to understand your issue.

You are mixing binary code created by the Studio C++ compiler with code built with g++. That will work only under these conditions:

- You must use the -compat=g option with Studio C++ on every CC command, compiling and linking. (If  you are using Studio 12.4, you can use -std=c++03 or -std=c++11 instead.)

- The g++ compiler must be compatible with the version expected by the Studio C++ compiler, which depends on the Studio version.

- Only shared libraries (.so files) created by g++ can be linked, not .o or .a files.

- The compiler (CC or g++)  that builds the main program must be used to link the final program.

If you meet all these conditions and the code still fails, please show

- the Studio version (run the command "CC -V"),

- the g++ version (run "g++ -v"),

- the platform (operating system and version, and whether it is Sparc or x86), and

- show how you build the program.

1 - 1

Post Details

Added on Jan 26 2022
4 comments
1,563 views