Trying to eject cdrom

The green cdrom light is blinking on our Sun Solaris server. I tried the eject command to eject cdrom:

eject cdrom
cdrom: No such file or directory
bash-2.05# eject
No default media available
bash-2.05# eject cdrom0
cdrom0: No such file or directory
 
The message log file shows:
 
Oct 19 10:11:38 sdbb-prod scsi: [ID 107833 kern.warning] WARNING: /pci@1e,600000/ide@d/sd@0,0 (sd30):
Oct 19 10:11:38 sdbb-prod       Error for Command: read(10)                Error Level: Retryable
Oct 19 10:11:38 sdbb-prod scsi: [ID 107833 kern.notice]         Requested Block: 16                        Erro
r Block: 16
Oct 19 10:11:38 sdbb-prod scsi: [ID 107833 kern.notice]         Vendor: TEAC                               Seri
al Number:
Oct 19 10:11:38 sdbb-prod scsi: [ID 107833 kern.notice]         Sense Key: Not Ready
Oct 19 10:11:38 sdbb-prod scsi: [ID 107833 kern.notice]         ASC: 0x53 (media load or eject failed), ASCQ: 0
x0, FRU: 0x0
Oct 19 10:11:43 sdbb-prod scsi: [ID 107833 kern.warning] WARNING: /pci@1e,600000/ide@d/sd@0,0 (sd30):
Oct 19 10:11:43 sdbb-prod       Error for Command: read(10)                Error Level: Retryable
Oct 19 10:11:43 sdbb-prod scsi: [ID 107833 kern.notice]         Requested Block: 16                        Erro
r Block: 16
Oct 19 10:11:43 sdbb-prod scsi: [ID 107833 kern.notice]         Vendor: TEAC                               Seri
al Number:
Oct 19 10:11:43 sdbb-prod scsi: [ID 107833 kern.notice]         Sense Key: Not Ready
Oct 19 10:11:43 sdbb-prod scsi: [ID 107833 kern.notice]         ASC: 0x53 (media load or eject failed), ASCQ: 0
x0, FRU: 0x0
Oct 19 10:11:48 sdbb-prod scsi: [ID 107833 kern.warning] WARNING: /pci@1e,600000/ide@d/sd@0,0 (sd30):
Oct 19 10:11:48 sdbb-prod       Error for Command: read(10)                Error Level: Retryable
Oct 19 10:11:48 sdbb-prod scsi: [ID 107833 kern.notice]         Requested Block: 16                        Erro
r Block: 16
Oct 19 10:11:48 sdbb-prod scsi: [ID 107833 kern.notice]         Vendor: TEAC                               Seri
al Number:
Oct 19 10:11:48 sdbb-prod scsi: [ID 107833 kern.notice]         Sense Key: Not Ready
Oct 19 10:11:48 sdbb-prod scsi: [ID 107833 kern.notice]         ASC: 0x53 (media load or eject failed), ASCQ: 0
x0, FRU: 0x0
Oct 19 10:11:53 sdbb-prod scsi: [ID 107833 kern.warning] WARNING: /pci@1e,600000/ide@d/sd@0,0 (sd30):
Oct 19 10:11:53 sdbb-prod       Error for Command: read(10)                Error Level: Fatal
Oct 19 10:11:53 sdbb-prod scsi: [ID 107833 kern.notice]         Requested Block: 16                        Erro
r Block: 16
Oct 19 10:11:53 sdbb-prod scsi: [ID 107833 kern.notice]         Vendor: TEAC                               Seri
al Number:
Oct 19 10:11:53 sdbb-prod scsi: [ID 107833 kern.notice]         Sense Key: Not Ready
Oct 19 10:11:53 sdbb-prod scsi: [ID 107833 kern.notice]         ASC: 0x3a (medium not present), ASCQ: 0x0, FRU:
 0x0

It looks like the cdrom is not mounted. You may want to verify that first.
Could the blinking be a self-detected hardware problem?

Try to restart vold daemon. Is it solaris-9/10 ?

Try to use absolute PATH to the CDROM

eject /dev/cxtxdxsx

and to get appropriate device you can use

cdrw command

you could perform the following steps....not sure of it though

#/etc/init.d/volmgt stop
#eject
#/etc/init.d/volmgt start

---------- Post updated at 09:26 AM ---------- Previous update was at 09:25 AM ----------

After you get this error

bash-2.05# eject
No default media available

try removing the media manually.

Or you could issue the following command:

eject -n

and look for the cd-rom device in the output of that command

eject -n simply replays a canned list of "nicknames" or synonyms that eject understands.
How does that identify the device in question?