Unable to mount in failsafe mode in Solaris 10


 
Thread Tools Search this Thread
Operating Systems Solaris Unable to mount in failsafe mode in Solaris 10
# 1  
Old 08-22-2013
Unable to mount in failsafe mode in Solaris 10

Hi,

A server is running solaris 10. From the OK prompt, I have used the command 'boot -F failsafe' and here I am trying to mount a remote directory using the command:

#mount 10.238.233.13:/export/home/ssuser /tmp/mnt

but i dont get any response for sometime and then it shows the error message that

nfs mount: RPCbind failure : RPC timed out


whereas when I try to mount that directory in Run Level 3, that is successfully mounted without any issue.

Can anyone please help me!!!

regards,
Tayyab

---------- Post updated at 07:55 PM ---------- Previous update was at 07:51 PM ----------

I actually need to mount that remote directory to load disk image on this server but unfortunately mount not working in failsafe mode.... Smilie
# 2  
Old 08-22-2013
Your network interface isn't up because you're not at multi-user.

Manually configure the interface by:

Code:
 
ifconfig <interface name> plumb

Followed by:

Code:
ifconfig <interface name> <ipaddr/netmask/etc>

Followed by:

Code:
ifconfig <interface name> up


You may need to:

Code:
route add default <IP-Address>

(address of router if required to reach target)

You should then be able to ping the nfs target successfully and, if so, the remote mount should also work.

Hope that helps.
# 3  
Old 08-22-2013
Unable to mount in failsafe mode in Solaris 10

Thanks for the response, but I have already followed these steps.
I have configured the interface e1000g0 and added the default route. Also, I am able to ping the nexthop router.

What could be the possible cases in which system can show RPC bind error?
Can anyone confirm, if traceroute works in failsafe mode?
Can I run a snoop in failsafe mode?

---------- Post updated at 09:57 PM ---------- Previous update was at 09:55 PM ----------

Is there anything else that I can check/verify?

Last edited by DukeNuke2; 08-23-2013 at 03:15 AM..
# 4  
Old 08-22-2013
You mention the interface is e1000g0. That tells me this is a SPARC system.

You say that you can ping the nexthop router. Does that mean that you can't ping the target nfs machine??

What is the target machine? Is that a Solaris box?

Yes, I would expect traceroute to work in failsafe mode.
# 5  
Old 08-23-2013
Quote:
Originally Posted by hicksd8
You mention the interface is e1000g0. That tells me this is a SPARC system.
The e1000g driver is supported on both SPARC and x86 hardware.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Solaris 10 Failsafe mode advantages and disadvantages

Hi Guys, Have you tried running Solaris 10 on Failsafe mode? What are their advantages and disadvantages? What would you recommend for a roll-back plan in case something happens after failsafe mode? I need to run on failsafe mode to be able to execute fsck. Appreciate your kind... (1 Reply)
Discussion started by: bocha
1 Replies

2. Solaris

Solaris failsafe - what is it ?

Hi all, Tried googling what is solaris failsafe, but results from oracle only show how to use it, but not what is it Can any kind soul here shed some light or point me to some documentation ? Do we need to install failsafe during the OS installation ? is failsafe located on the same disk... (2 Replies)
Discussion started by: javanoob
2 Replies

3. Solaris

Unable to mount ext4 filesystem (created from Ubuntu) in Solaris 11

Hello everyone, I am trying to mount an ext4 filesystem which I created from Ubuntu. But mount command fails saying: prakhar@Solaris:~$ sudo mount /dev/dsk/c10t0d0p1 /mnt Password: mount: /dev/dsk/c10t0d0p1 is not this fstype And I also tried this: prakhar@Solaris:~$ fstyp... (6 Replies)
Discussion started by: Prakhar Mishra
6 Replies

4. Solaris

"No disk found" in failsafe mode

Hi all. I have a problem: My server is HP DL380 G5, and installed Sun OS 5.10 generic i86pc I have misstake when hit command "crle -l /opt/nms/lib", so default library path "/lib:/usr/libs" lose. Now, I can't restart system, message is: "Warning:init(1m) existed on fatal signal 9". So, i... (6 Replies)
Discussion started by: tanglung117
6 Replies

5. Shell Programming and Scripting

Unable to login into GUI mode.

hii all, I am unable to login into GUI mode in solaris 10. It is only prompting me to command mode credentials not going further to GUI mode.. Please help.. Thanks & regards, Bhagi (3 Replies)
Discussion started by: bhargav90
3 Replies

6. Solaris

failsafe mode

What is failsafe mode? how to enter into the failsafe mode? (0 Replies)
Discussion started by: revathireddy
0 Replies

7. Solaris

Solaris 10 failsafe can not mount root

i have a major problem, i renamed the ld.so.1 file. so i want to reboot into single user mode / fail safe / cdrom single user but i will not mount the root disk. if i look in /dev/dsk all i see is ide disks (cdrom) and no actual disks. (2 Replies)
Discussion started by: dshakey
2 Replies

8. Solaris

mount & umount in sigle-user mode

In Solaris 8, when I boot to single user mode, mount a device and then reboot or init 0, the system unmount it automatically. However, in Solaris 10 it does not seem to do the same. Here is what I did: {0} ok boot -s # format Searching for disks...done AVAILABLE DISK SELECTIONS: 0.... (11 Replies)
Discussion started by: StarSol
11 Replies

9. UNIX for Dummies Questions & Answers

how to mount a hotswap scsi drive on a solaris 2.6 netra box using the mount command?

Hi... question is this: How do I mount an LVD hotswap scsi drive in bay #2 on a netra using the mount command? volmgt doesn't seem to mount it and/or I don't know how to view the drives data if it's formatted which it may not be. This drive is not new out of the box so I'm not sure. ... (4 Replies)
Discussion started by: soulshaker
4 Replies
Login or Register to Ask a Question