Ocfs2 can not mount the ocfs2 file system on RedHat AS v4 Update 1

Hi there,
I installed ocfs2-2.6.9-11.0.0.10.3.EL-1.0.4-1.i686.rpm onto RedHat linux AS v4 update 1. Installation looks OK. And configure ocfs2 (At this stage i only added 1 node in the cluster), load and start accordingly. Then paritition the disk and mkfs.ocfs2 the partition. Everything seems OK.
[root@node1 init.d]# ./o2cb status
Module "configfs": Loaded
Filesystem "configfs": Mounted
Module "ocfs2_nodemanager": Loaded
Module "ocfs2_dlm": Loaded
Module "ocfs2_dlmfs": Loaded
Filesystem "ocfs2_dlmfs": Mounted
Checking cluster ocfs2: Online
Checking heartbeat: Not active
But here you can check if the partition is there:
[root@node1 init.d]# fsck.ocfs2 /dev/hda12
Checking OCFS2 filesystem in /dev/hda12:
label: oracle
uuid: 27 74 a6 70 32 ad 4f 77 bf 55 8e 3a 87 78 ea cb
number of blocks: 612464
bytes per block: 4096
number of clusters: 76558
bytes per cluster: 32768
max slots: 2
/dev/hda12 is clean. It will be checked after 20 additional mounts.
However, mount -t ocfs2 /dev/hda12 just does not work.
[root@node1 oracle]# mount -t ocfs2 /dev/hda12 /oradata/m10g
mount.ocfs2: No such device while mounting /dev/hda12 on /oradata/m10g
[root@node1 oracle]# mount -L oracle
mount: no such partition found
Looks like mount just can not see the ocfs2 partition somehow.
I cannot find much info in metalink and anywhere else, does anyone here come across this issue before?
Regards,
Eric

I have been having a similar problem.
However, when I applied your fix I ended up with another problem:
(20765,0):ocfs2_initialize_osb:1179 max_slots for this device: 4
(20765,0):ocfs2_fill_local_node_info:851 I am node 0
(20765,0):dlm_request_join:756 ERROR: status = -107
(20765,0):dlm_try_to_join_domain:906 ERROR: status = -107
(20765,0):dlm_join_domain:1151 ERROR: status = -107
(20765,0):dlm_register_domain:1330 ERROR: status = -107
(20765,0):ocfs2_dlm_init:1771 ERROR: status = -12
(20765,0):ocfs2_mount_volume:912 ERROR: status = -12
ocfs2: Unmounting device (253,7) on (node 0)
Now the odd thing about this bit of log output (/var/log/messages)
is the fact that this is only a 2 node cluster and only one node has
currently mounted the file system in question. Now, I am running
the multipath drivers with my qla2xxx drivers under SLES9-R2.
However, at worst that should only double everything
(2 nodes x 2 paths through the SAN).
How can I get more low level information on what is consuming
the node slots in ocfs2? How can I force it to "disconnect" nodes
and recover/cleanup node slots?

Similar Messages

  • I can not install any addons as firefox throws an error saying " firefox can not modify the needed file"

    whenever I try to install an addon, firefox says it can not install the addon since it can not modify the needed file! Whatever addon I have are from my previous version of firefox.

    Is the date / time set correctly on that PC? <br />
    Right-click the Time in the System Tray and select Adjust Date / Time to see.

  • My Organizer can not open the catalog file it crash down.

    My Organizer can not open the catalog file it crash down.

    OS X Yosemite And PSE 13
    2015-01-16 8:24 GMT+01:00 Anwesha Dev Chaudhary <[email protected]>:
        My Organizer can not open the catalog file it crash down.  created by Anwesha
    Dev Chaudhary <https://forums.adobe.com/people/AnweshaDevChaudhary> in *Photoshop
    Elements* - View the full discussion
    <https://forums.adobe.com/message/7101754#7101754>

  • HT1719 my ipod shuffle wont sync, it says can not sync the required file can not be found??? please help.

    my ipod shuffle wont sync, it says can not sync the required file can not be found??? please help.

    if u can get your hands on a mac tis will work
    http://www.youtube.com/watch?v=vfnXjV9p0pA&feature=related

  • Mounting the Root File System into RAM

    Hi,
    I had been wondering, recently, how can one copy the entire root hierarchy, or wanted parts of it, into RAM, mount it at startup, and use it as the root itself.  At shutdown, the modified files and directories would be synchronized back to the non-volatile storage. This synchronization could also be performed manually, before shutting down.
    I have now succeeded, at least it seems, in performing such a task. There are still some issues.
    For anyone interested, I will be describing how I have done it, and I will provide the files that I have worked with.
    A custom kernel hook is used to (overall):
    Mount the non-volatile root in a mountpoint in the initramfs. I used /root_source
    Mount the volatile ramdisk in a mountpoint in the initramfs. I used /root_ram
    Copy the non-volatile content into the ramdisk.
    Remount by binding each of these two mountpoints in the new root, so that we can have access to both volumes in the new ramdisk root itself once the root is changed, to synchronize back any modified RAM content to the non-volatile storage medium: /rootfs/rootfs_{source,ram}
    A mount handler is set (mount_handler) to a custom function, which mounts, by binding, the new ramdisk root into a root that will be switched to by the kernel.
    To integrate this hook into a initramfs, a preset is needed.
    I added this hook (named "ram") as the last one in mkinitcpio.conf. -- Adding it before some other hooks did not seem to work; and even now, it sometimes does not detect the physical disk.
    The kernel needs to be passed some custom arguments; at a minimum, these are required: ram=1
    When shutting down, the ramdisk contents is synchronized back with the source root, by the means of a bash script. This script can be run manually to save one's work before/without shutting down. For this (shutdown) event, I made a custom systemd service file.
    I chose to use unison to synchronize between the volatile and the non-volatile mediums. When synchronizing, nothing in the directory structure should be modified, because unison will not synchronize those changes in the end; it will complain, and exit with an error, although it will still synchronize the rest. Thus, I recommend that if you synch manually (by running /root/Documents/rootfs/unmount-root-fs.sh, for example), do not execute any other command before synchronization has completed, because ~/.bash_history, for example, would be updated, and unison would not update this file.
    Some prerequisites exist (by default):
        Packages: unison(, cp), find, cpio, rsync and, of course, any any other packages which you can mount your root file system (type) with. I have included these: mount.{,cifs,fuse,ntfs,ntfs-3g,lowntfs-3g,nfs,nfs4}, so you may need to install ntfs-3g the nfs-related packages (nfs-utils?), or remove the unwanted "mount.+" entires from /etc/initcpio/install/ram.
        Referencing paths:
            The variables:
                source=
                temporary=
            ...should have the same value in all of these files:
                "/etc/initcpio/hooks/ram"
                "/root/Documents/rootfs/unmount-root-fs.sh"
                "/root/.rsync/exclude.txt"    -- Should correspond.
            This is needed to sync the RAM disk back to the hard disk.
        I think that it is required to have the old root and the new root mountpoints directly residing at the root / of the initramfs, from what I have noticed. For example, "/new_root" and "/old_root".
    Here are all the accepted and used parameters:
        Parameter                       Allowed Values                                          Default Value        Considered Values                         Description
        root                                 Default (UUID=+,/dev/disk/by-*/*)            None                     Any string                                      The source root
        rootfstype                       Default of "-t <types>" of "mount"           "auto"                    Any string                                      The FS type of the source root.
        rootflags                         Default of "-o <options>" of "mount"        None                     Any string                                      Options when mounting the source root.
        ram                                 Any string                                                  None                     "1"                                                  If this hook sould be run.
        ramfstype                       Default of "-t <types>" of "mount"           "auto"                     Any string                                      The FS type of the RAM disk.
        ramflags                         Default of "-o <options>" of "mount"        "size=50%"           Any string                                       Options when mounting the RAM disk.
        ramcleanup                    Any string                                                   None                     "0"                                                  If any left-overs should be cleaned.
        ramcleanup_source       Any string                                                   None                     "1"                                                  If the source root should be unmounted.
        ram_transfer_tool          cp,find,cpio,rsync,unison                            unison                   cp,find,cpio,rsync                           What tool to use to transfer the root into RAM.
        ram_unison_fastcheck   true,false,default,yes,no,auto                    "default"                true,false,default,yes,no,auto        Argument to unison's "fastcheck" parameter. Relevant if ram_transfer_tool=unison.
        ramdisk_cache_use        0,1                                                              None                    0                                                      If unison should use any available cache. Relevant if ram_transfer_tool=unison.
        ramdisk_cache_update   0,1                                                              None                    0                                                     If unison should copy the cache to the RAM disk. Relevant if ram_transfer_tool=unison.
    This is the basic setup.
    Optionally:
        I disabled /tmp as a tmpfs mountpoint: "systemctl mask tmp.mount" which executes "ln -s '/dev/null' '/etc/systemd/system/tmp.mount' ". I have included "/etc/systemd/system/tmp.mount" amongst the files.
        I unmount /dev/shm at each startup, using ExecStart from "/etc/systemd/system/ram.service".
    Here are the updated (version 3) files, archived: Root_RAM_FS.tar (I did not find a way to attach files -- does Arch forums allow attachments?)
    I decided to separate the functionalities "mounting from various sources", and "mounting the root into RAM". Currently, I am working only on mounting the root into RAM. This is why the names of some files changed.
    Of course, use what you need from the provided files.
    Here are the values for the time spend copying during startup for each transfer tool. The size of the entire root FS was 1.2 GB:
        find+cpio:  2:10s (2:12s on slower hardware)
        unison:      3:10s - 4:00s
        cp:             4 minutes (31 minutes on slower hardware)
        rsync:        4:40s (55 minutes on slower hardware)
        Beware that the find/cpio option is currently broken; it is available to be selected, but it will not work when being used.
    These are the remaining issues:
        find+cpio option does not create any destination files.
        (On some older hardware) When booting up, the source disk is not always detected.
        When booting up, the custom initramfs is not detected, after it has been updated from the RAM disk. I think this represents an issue with synchronizing back to the source root.
    Inconveniences:
        Unison needs to perform an update detection at each startup.
        initramfs' ash does not parse wild characters to use "cp".
    That's about what I can think of for now.
    I will gladly try to answer any questions.
    I don't consider myself a UNIX expert, so I would like to know your suggestions for improvement, especially from who consider themselves so.
    Last edited by AGT (2014-05-20 23:21:45)

    How did you use/test unison? In my case, unison, of course, is used in the cpio image, where there are no cache files, because unison has not been run yet in the initcpio image, before it had a chance to be used during boot time, to generate them; and during start up is when it is used; when it creates the archives. ...a circular dependency. Yet, files changed by the user would still need to be traversed to detect changes. So, I think that even providing pre-made cache files would not guarantee that they would be valid at start up, for all configurations of installation. -- I think, though, that these cache files could be copied/saved from the initcpio image to the root (disk and RAM), after they have been created, and used next time by copying them in the initcpio image during each start up. I think $HOME would need to be set.
    Unison was not using any cache previously anyway. I was aware of that, but I wanted to prove it by deleting any cache files remaining.
    Unison, actually, was slower (4 minutes) the first time it ran in the VM, compared to the physical hardware (3:10s). I have not measured the time for its subsequent runs, but It seemed that it was faster after the first run. The VM was hosted on a newer machine than what I have used so far: the VM host has an i3-3227U at 1.9 GHz CPU with 2 cores/4 threads and 8 GB of RAM (4 GB ware dedicated to the VM); my hardware has a Pentium B940 at 2 GHz CPU with 2 cores/2 threads and 4 GB of RAM.
    I could see that, in the VM, rsync and cp were copying faster than on my hardware; they were scrolling quicker.
    Grub, initially complains that there is no image, and shows a "Press any key to continue" message; if you continue, the kernel panics.
    I'll try using "poll_device()". What arguments does it need? More than just the device; also the number of seconds to wait?
    Last edited by AGT (2014-05-20 16:49:35)

  • My program can not find the help file

    I just downloaded JavaHelp. I can run all the examples. However when I recompile using Forte, the Merge Example it can not find the "master.hs" file. I suspect that I have something configured wrong.
    I put all the help files in the same directory as the source code.

    The helpset hs file is specified relative to the class from which it is referred. If the class & hs are in the same dir
    URL hsUrl=HelpSet.findHelpSet(null, "master.hs");
    hs=new HelpSet(null, hsUrl);

  • Can not open the app store on my mac since new update

    can not open the app store on my mac since new update

    Here are some suggestions for getting the best results from this site.
    Create a user profile that accurately reflects the type of hardware you're using and your version of OS X, or include that information in your first message.
    Give details of the problem. A remark such as "X doesn't work" conveys no useful information. If X did work, you wouldn't be here. Instead, you should post something like this: "I did A; I expected B; but I got C." Include the complete, verbatim text of any error messages you saw, and specify where you saw them: in an application window, a CrashReporter window, a log, or whatever.
    Also describe the steps you’ve taken yourself, if any, to try to resolve the issue. If the problem is of recent origin, did you make any changes to your setup just before you first noticed it? Is the problem reproducible or intermittent? That is, does it always manifest itself when you take a certain action, or only at unpredictable times?
    Before posting, ask yourself whether it’s likely that you are the the only person ever to have had this problem. If not, search the discussions for answered questions similar to yours. If you found any pertinent information, but it didn't help, give details.

  • My Backup.dmg is not mounting: No mountable file systems

    I had Mac OS X Leopard running with Boot Camp (Windows Vista). I needed extra space for my Mac OS so I deleted the Windows partition using the Boot Camp Assistant. Then, I shut down the computer, but after I turned it on, there was the flashing question mark, which meant that the computer couldn't recognize the Macintosh operating system that was installed. Therefore, I put in the Mac OS Install Disk, and tried to repair the disk but it said invalid BS_jmpBoot in block 000000. Seeing this, I decided to reinstall Mac OS X, but backing up with Disk Utility: Create New Compressed .DMG Image before doing so. After a successful installation, I tried to mount the image, but it says No Mountable File System. I feel hopeless, because all of my precious data was backed up in that disk image. When I try to verify or repair that disk using Disk Utility, it says Unrecognized File System. Are all the files on that image corrupt and impossible to recover, or is it possible to recover those files (but of course, losing some files, since the image appears to be corrupt).

    Again, if you cannot mount the image then there's no way to recover the files. If the image would mount then you could try repairing it with Disk Utility or try using recovery software to recover files from it. But if it doesn't mount then there's nothing you can do with it.
    If you want to try you can see if recovery software can find files on it. See the following:
    Basics of File Recovery
    Files in Trash
    If you simply put files in the Trash you can restore them by opening the Trash (left-click on the Trash icon) and drag the files from the Trash to your Desktop or other desired location. OS X also provides a short-cut to undo the last item moved to the Trash -press COMMAND-Z.
    If you empty the Trash the files are gone. If a program does an immediate delete rather than moving files to the Trash, then the files are gone. Recovery is possible but you must not allow any additional writes to the hard drive - shut it down. When files are deleted only the directory entries, not the files themselves, is modified. The space occupied by the files has been returned to the system as available for storage, but the files are still on the drive. Writing to the drive will then eventually overwrite the space once occupied by the deleted files in which case the files are lost permanently. Also if you save a file over an existing file of the same name, then the old file is overwritten and cannot be recovered.
    General File Recovery
    If you stop using the drive it's possible to recover deleted files that have not been overwritten with recovery software such as Data Rescue II, File Salvage or TechTool Pro. Each of the preceding come on bootable CDs to enable usage without risk of writing more data to the hard drive.
    The longer the hard drive remains in use and data are written to it, the greater the risk your deleted files will be overwritten.
    Also visit The XLab FAQs and read the FAQ on Data Recovery.
    You can download trial versions of the software. The trials can be used to see if the software can recover anything, but then you must purchase the software to actually do any file recovery.

  • I have updated my PSE9 and still can not open the RAW files from my new camera, I get an error?

    I bought a new camera (Canon T5i) and took photos in RAW, tried to open them in PSE9 and they wouldn't open. I got the following error...
    Canon RAW Codec found a new CR2 file that is not supported by the installed version.
    You can download the Canon RAW Codec update program from the link below.
    (Canon Server)
    I have been to the link & downloaded what update it had. I have also done the available updates on my PSE9 and I am still getting this error messge. When I called Canon regarding this they said I needed to contact Adobe.
    Can someone please tell me what I am doing wrong or not doing so I can open these files???

    The T5 is supported by Camera RAW 8.4 which needs PSE12. You can use the Canon software to convert RAW to TIF or the Adobe DNG Converter. The converter will convert the CR2 files to Adobes RAW DNG format that will open in PSE9's RAW processor. http://www.adobe.com/uk/products/photoshop/extend.displayTab2.html#downloads.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • How can I access the Server file system without using any signed applet?

    Is it possible for me to run an applet on the client machine such that the client can view my server file system and perform uploading and downloading of files through the applet without signing the applet?

    Add the following in your java.policy file, your plug in accesses.
    grant {
    permission java.permission.AllPermission;

  • I can not install the 'attach files more easily' facility in my yahoo email. Is this because I now have the latest version of Firefox? I had it on my previous version.

    To send photos I need the 'attach files more easily' facility in my Yahoo email. After I recently upgraded my broadband so that I now get 37mb speed, Firefox (and Internet Explorer) started to 'not respond' so I un-installed it then re-installed it. I got the latest version of Firefox and now I can't get the facility back again. Have you got any suggestions? Yahoo have not been able to help.

    I could only find this link, hoping it will work:
    Network.ftp.idleConnectionTimeout
    * http://kb.mozillazine.org/Network.ftp.idleConnectionTimeout
    Check and tell if its working.

  • The agent can not upload the xml file in the repository of the OMS

    Hi,
    I install an agent 10.2.0.4 HP-UX v.11.23, 64 bit, which has an Oracle database v.10.2.0.4.
    The OMS identified a single server, but no database.
    I uninstall the agent and remove the server from the OEM (html).
    I install agent again with the patch 6409645.
    Configure a security key to the agent (emctl secure agent).
    However, it generates a file error emagent.trc, when i start the agent:
    2009-04-14 12:23:05,819 Thread-1 WARN collector: MESSAGE_NLSID "Successful Name Registration Request Sent By Identity Provider(%)" is too long, truncating to "Successful Name Registration Request Sent By Identity Provider(%"
    2009-04-14 12:23:40,616 Thread-21 WARN upload: FxferSend: received http error in header from repository: https://gcontrol.manquehue.local:1159/em/upload
    ERROR-400|ORA-01861: literal does not match format string
    2009-04-14 12:23:40,619 Thread-21 ERROR upload: Failed to upload file B0000001.xml: HTTP error.
    Response received: ERROR-400|ORA-01861: literal does not match format string
    Please anyone can help me?
    David

    Hi:
    Do the following in OMS host:
    [oracle@gcontrol bin]$ ./emctl secure unlock
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Checking the security status of the OMS... Done.
    Stopping the HTTP Server... Done.
    Updating HTTPS Virtual Host for Enterprise Manager OMS... Done.
    Starting the HTTP Server... Done.
    OMS Unlocked. Non Secure Agents may upload using HTTP.
    [oracle@gcontrol bin]$
    In Agent host:
    $AGENT_HOME/bin/emctl unsecure agent
    $AGENT_HOME/bin/emctl secure agent
    $AGENT_HOME/bin/emctl start agent
    $AGENT_HOME/bin/emctl status agent
    $AGENT_HOME/bin/emctl upload agent
    but the error continues:
    2009-04-16 18:08:07,700 Thread-1 WARN http: snmehl_connect: connect failed to (delfos:1830): Connection refused (error = 239)
    2009-04-16 18:08:07,700 Thread-1 ERROR main: nmectla_agentctl: Error connecting to https://delfos:1830/emd/main/. Returning status code 1
    Even start the agent without security, but the error remains. (unsecure only)
    2009-04-16 18:07:43,353 Thread-1 WARN http: snmehl_connect: connect failed to (delfos:1830): Connection refused (error = 239)
    2009-04-16 18:07:43,354 Thread-1 ERROR main: nmectla_agentctl: Error connecting to http://delfos:1830/emd/main/. Returning status code 1
    Not yet implemented $OMS_HOME/bin/emctl secure lock
    Any idea?
    Thanks for your help.
    David

  • Can not unzip the zip file of AIR 3.4 beta2 sdk for windows

    http://labsdownload.adobe.com/pub/labs/flashplatformruntimes/air3-4/air3-4_p2_sdk_win_0807 12.zip
    the file can not be unzip.

    Could you please try again, it's fixed now, Apologies for the inconvenience.
    -Thanks
    Pahup

  • Buisness system can not find the relevant technical system in xi sld

    Hello,
    I set up r3 business system and technical system landscape in xi SLD, somehow the business system cannot find the relevant system landscape, does anybody have any suggestions what's possiblly goes wrong in my sld setting or how should I debug?
    Thanks,
    Meg

    Hey,
    Well  did you create the technical system  or was it created or used before>? Unless it was done you can't create  Business System for the specified technical system.
    Cheers,
    <b>*RAJ*
    *REWARD POINTS IF FOUND HLEPFULL*</b>

  • Elements 10 can not read the raw-files from my Sony a-57

    The raw-converter is updatet to 6.7 and according to Adobe it should be able to read Sony a-57. When I got Elements 10, a file had to be moved so it could read the raw-files from my Minolta 5D. Can this be the cause of the problem ? What to do ?

    What version of ACR does Help / About Plug-ins… / Camera Raw… show you, and is more than one Camera Raw listed in About Plug-ins…?

Maybe you are looking for

  • HT3819 I cannot seem to transfer my voice memos to from my iphone to my pc , any suggestions?

    My voice memos will not transfer to my pc from my iphone ?

  • Edit Text from one screen to another screen

    Hi Experts,        Here I am having two doubts in doing functionality on SMP 2.3,The below mentioned are the doubts,                    1. In SMP 2.3 Version,When i am doing Hybrid App Designer in that  Edit Text functionality to pass the values from

  • My passcode on my iPhone 5 is not working

    My passcode on my iPhone 5 is not working. I tried to restore it using iTunes, but it says I must turn off the "Find My iPhone" app to do so. I can't turn off the app without being able to unlock my phone. Does anybody know what I can do?

  • SQL Group by issues

    Hi All I am new to SQL . There are two tables EMP and DEPT . The common column betwee these two is DEPT_NO Al I am trying to do is display the department name , number of employees and the department's average salary of the employees. Below id my que

  • Adding attachment through ABAP screen

    Hi experts, I have a requirement where i need to add attachment from a ABAP screen or through SM30 screen. That is, we provide a transaction code for the users to maintain table entries. In additon to maintain values, the user wants to add attachment