10g stopped working after 11g installed. Getting ORA-12514: error

I had Oracle 10g installed in win2000 sp2. with port 1521.
I have installed Oracle 11g on the same system. with port 1522.
I am able to start both the instances and tnslistener but I am not able to connect to Oracle10g database. Getting following error.
ORA-12514: TNS:listener does not currently know of service requested in connect
descriptor
I have done the following check.
c:\> tnsping tek10g
TNS Ping Utility for 32-bit Windows: Version 11.1.0.6.0 - Production on 14-MAR-2
008 13:04:26
Copyright (c) 1997, 2007, Oracle. All rights reserved.
Used parameter files:
C:\app\mmurugai\product\11.1.0\db_1\network\admin\sqlnet.ora
Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)
(HOST = PC456)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = tek10g) (SRVR = DE
DICATED)))
OK (50 msec)
2) Checked lsnrctl services
LSNRCTL> services
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=PC456.SYNTELORG.COM)(PO
T=1522)))
Services Summary...
Service "orcl11g" has 1 instance(s).
Instance "orcl11g", status READY, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:3 refused:0 state:ready
LOCAL SERVER
Service "orcl11gXDB" has 1 instance(s).
Instance "orcl11g", status READY, has 1 handler(s) for this service...
Handler(s):
"D000" established:0 refused:0 current:0 max:1022 state:ready
DISPATCHER <machine: PC456, pid: 284>
(ADDRESS=(PROTOCOL=tcp)(HOST=PC456.SYNTELORG.COM)(PORT=2963))
Service "orcl11g_XPT" has 1 instance(s).
Instance "orcl11g", status READY, has 1 handler(s) for this service...
Handler(s):
"DEDICATED" established:3 refused:0 state:ready
LOCAL SERVER
The command completed successfully
LSNRCTL>
I am not able to see my tek10g 10g database details.
I also checked my tnsnames.ora file which has the entries properly.
Sqlnet.ora file has
SQLNET.AUTHENTICATION_SERVICES= (NTS)
NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
How to solve this issue? Is that possible to run oracle 10g and oracle 11g in same host?
Thanks in Advance...
regards,
Manikandan

The approach I would take, in general is:
1) pick a listener, and only one. Get that working.
2) Make sure all the databases register to that listener
3) Fix the TNSNAMES.ORA files appropriately.
To fix the listener
1) Verify the listener address matches the current environment
SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = PLSExtProc)
      (ORACLE_HOME = C:\oracle\app\oracle\product\10.2.0\server)
      (PROGRAM = extproc)
    (SID_DESC =
      (SID_NAME = CLRExtProc)
      (ORACLE_HOME = C:\oracle\app\oracle\product\10.2.0\server)     << - MUST point to correct HOME
      (PROGRAM = extproc)
LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
      (ADDRESS = (PROTOCOL = TCP)(HOST = myHOST)(PORT = myPORT))
  )where
myHOST is this host's resolvable name or IP address
myPORT is the port (default 1521) that the listener should monitor
The HOST is often a problem if the machine uses DHCP.
2) Register the databases
On startup, database will auto-register to the listener defined in the init parameter 'LOCAL_LISTENER', which defaults to 'HOST={current_host}, PORT=1521'
After startup, if the listener is taken down, you can register each database manually using the DBA command
ALTER SYSTEM REGISTER;
Either way, it should show up in the output of 'lsnrctl status'
While you are accessing the database, you might want to find out which services the database supports. That can be done in SQLPlus using the command
SHOW PARAMETER SERVICE_NAMES
Note that the database name is the default service name.
3) Fix [all] the TNSNAMES.ORA file[s].
Each SERVICE_NAME from the previous list that you want to access from this client, yu should find an entry that looks like
myTEST =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = myHOST)(PORT = myPORT))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = mySERVICE)
myTEST is the alias I want to look up by using it as the connect target string.
myHOST should match the HOST= entry in the LISTENER.ORA
myPORT MUST match the PORT= entry in the LISTENER.ORA
mySERVICE is the Service to which I am asking the listener to connect me, as found in the lsnrctl status output

Similar Messages

  • Suddenly getting ORA-12514 error Oracle 11gr2

    I installed Oracle 11g r2 fine, had 2 databases (se3 and mydb, both have db_domain .orcl i.e. mydb.orcl and se3.orcl) running on it fine till yesterday. but suddenly im getting ORA-12514 error (TNS:listener doesn't know of service requested in connect descriptor)..
    My tnsnames.ora file:
    # tnsnames.ora Network Configuration File: G:\oracledb\product\11.2.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    LISTENER_MYDB =
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
    MYDB =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = mydb.orcl)
    SE3 =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = se3.orcl)
    LISTENER_SE3 =
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    and my listener.ora file is as follows:
    # listener.ora Network Configuration File: G:\oracledb\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = G:\oracledb\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:G:\oracledb\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    ADR_BASE_LISTENER = G:\oracledb
    * i have both of databases up and running(confirmed through administration assistant), the listener is up.. im able to execute "tnsping mydb/se3".. i'm not able to connect to either one of them through sqlplus/sql developer.. The result of "lsnrctl service" is as follows:
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
      TNS-00511: No listener
       32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:0 refused:0
             LOCAL SERVER
    The command completed successfully
    PLEASE HELP ME FRIENDS!! I HAVE A PROJECT DUE IN EARLY OCTOBER

    Hi,
    Instead of this:
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = G:\oracledb\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:G:\oracledb\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    have the following in your listener file
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = G:\oracledb\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:G:\oracledb\product\11.2.0\dbhome_1\bin\oraclr11.dll")
       (SID_DESC =
          (SID_NAME = mydb)
          (ORACLE_HOME = G:\oracledb\product\11.2.0\dbhome_1)
        (SID_DESC =
          (SID_NAME = se3)
          (ORACLE_HOME = G:\oracledb\product\11.2.0\dbhome_1)   
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    Also, dont have 'localhost' in your listener.ora file, provide the actual IP or hostanme. NEVER YOU should have
    localhost.
    Restart listener and try.
    Thanks &
    Best Regard,

  • Yahoo messenger voice chat stopped working (after archive & install)

    I have an iMac5 Intel Core 2 Duo 2.16 GHz. I (actually my wife) was using Yahoo Messenger v3.0 beta 4 (built 156957) for all chat and voice chat. About 2 months ago voice chat stopped working. when i send invite, it keeps ringing (but the receiver never sees any invite). When the other person sends me an invite, I don't get anything.
    I have downloaded Gizmo, but it also keeps "connecting...".
    About 2 months ago, I had to archive and install to solve a Java update issue which was causing wierd problems. Thanks to BDAqua's advice I managed to resolve that. I have J2SE 1.4.2 and 5.0; everything else is working fine.
    What can cause voice chat to stop working? Is there some vc plugin in library that needs to be there, which has disappearted after my "archive and install'? Please advise. thanks Fahd

    Hi again Fahdali,
    Have you tried reinstalling it since then?
    http://www.apple.com/downloads/macosx/email_chat/yahoomessengerformac.html
    Or...
    http://wiki.answers.com/Q/CaniChat_be_used_with_yahoomessenger

  • Boot keys stopped working after Leopard install

    I have seen others having this problem in another thread but no answers, so thought I'd give it a go.
    After reading these threads finally got Leopard to install and run okay. Many thanks all. But, along the way, my boot keys stopped working. It doesn't matter what I hold down, whether 'c' or 'cmd-opt-p-r' or 'shift' or any other key combination the machine just boots straight into Leopard.
    I have tried resetting the PMU (or whatever it is these days) via the internal button in desperation but still no luck.
    Anyone with any ideas?

    Same problem here, so I'll pull this post up. No key works.
    I always have to go to the Start Drive (or whatever it's called in english) in Preferences Panes and choose the partition I wish to start directly in OSX or Windows for booting back to OSX. This is very annoying. Alt key won't show up any possible boot disk although their both internal drives.
    If someone would kindly post any ideas how to change that, would be great. I've done a fresh install, with a Time Machine recovery, but this didn't seem to help.
    EDIT:
    I found another subjet here from november '07:
    http://discussions.apple.com/thread.jspa?threadID=1224639
    it seems the new Apple Keyboard is the origin of the Problem on iMac Core Duo. Apple techs said that a new firmeware should be coming before the end of 2007 (but it's february 2008 now ?!?). Any other ideas how to get this work ? I'll write on Aplpe feedback page for sure. Maybe the other boot keys aren't working because of this keyboard too.
    Message was edited by: Nordlaser

  • DVD drive stopped working after Mavericks install

    I have a Macbook Pro (late 08 model) that was running Snow Leopard. I recently did a clean install of Mavericks and since then the DVD drive just spins and ejects discs without being able to read them (doesn't seem to matter what I use. Software, games, audio cds, etc..). It was working fine before installing Mavericks and I can still boot from the DVD drive (old snow leopard boot disc) but it won't read any discs once booted into the OS even though the OS is detecting the drive just not the disc when inserted.
    I've tried resetting the NVRAM/PRAM and resetting the SMC as suggested on other forums but like many others with the same issue it didn't help. I also cycled through several drutil commands as suggested to "wake up" the drive but that didn't help any either.
    I'm kind of stumped here guys. I could roll back to Snow Leopard but I've got some software thats dropping support so I'd rather be running Mavericks if I can sort out this DVD drive issue. Clearly its not the drive itself since it worked fine before and I can boot from it. Any ideas?

    Hrm looks like I might of fixed it. I went back after seeing another post about spamming drutil commands to "wake up" the drive and just spammed them about 20 or so times and the drive started working again.
    I'm still very confused as to why it just stopped working within the OS after installing Mavericks (yet I was still able to boot from the DVD just fine). Clearly something is bugged in mavericks. I even came across a post on the apple forums from someone with this issue and it was effecting both his late 08 and early 2013 Macbook Pros.
    I'll keep an eye on my own machine to see if it stops working again but for now it seems my drive is "fixed" go figure.

  • 8i on NT Listener stops working after Designer install

    We installed Oracle 8i Enterprise Edition 8.1.5.0.0 on NT. Database worked fine. After installing Designer 6.0, the Listener will not start.
    FYI, for the Designer installation, we used the same ORACLE_HOME name as the database, but a different directory location. Any suggestions?
    Please redirect us to another forum if appropriate.
    Thanks,
    -Don & Van
    null

    Ravi,
    Thank you for your prompt reply.
    1. Your answer would suggest that we have not installed the products in the proper order. Would you suggest that we de-install and re-install in the order you listed?
    2. Could the installation order have caused the Listener to stop working?
    3. Can you suggest another approach to resolving the Listener issue other than re-installing Designer and Oracle 8i in the order you suggested?
    Thanks again,
    -Don & Van

  • Itunes stops working after update install

    Anyone have the issue where itunes stops working post the latest update install? Ive even uninstalled itunes and attempted to reinstall and it doesnt work

    Hey Rockettman23,
    Thanks for the question. I understand that you are experiencing issues with iTunes for Windows. I also understand that you have already attempted to reinstall iTunes. You can use the steps in this resource to further isolate the issue to user-specific or system-wide:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/TS1717
    Thanks,
    Matt M.

  • Getting "ORA-12514 error" while connecting first time

    Hi,
    Getting below error while connecting to the database first time.
    ORA-12514: TNS:listener does not currently know of service requested in connect
    apludc01dat25:e2cmpc1 > tnsping ora37_ap
    TNS Ping Utility for Linux: Version 10.2.0.5.0 - Production on 26-MAR-2012 12:00:58
    Copyright (c) 1997, 2010, Oracle. All rights reserved.
    Used parameter files:
    /grid/product/crs/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = apl11764clu01-scan-oravip.nat.bt.com)(PORT = 61901)) (CONNECT_DATA = (SERVICE_NAME = ORA37_ap))
    OK (0 msec)
    apludc01dat25:e2cmpc1 > sqlplus
    SQL*Plus: Release 10.2.0.5.0 - Production on Mon Mar 26 12:00:15 2012
    Copyright (c) 1982, 2010, Oracle. All Rights Reserved.
    Enter user-name: outln@ora37_ap
    Enter password:
    ERROR:
    ORA-12514: TNS:listener does not currently know of service requested in connect
    descriptor
    Enter user-name:
    apludc01dat25:e2cmpc1 > sqlplus
    SQL*Plus: Release 10.2.0.5.0 - Production on Mon Mar 26 12:00:22 2012
    Copyright (c) 1982, 2010, Oracle. All Rights Reserved.
    Enter user-name: outln@ora37_ap
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP, Data Mining
    and Real Application Testing options
    SQL>
    Please help me out to resolve this issue.
    Thank you.
    Regards,
    Dasarath

    Hi,
    We are getting this error while connecting remotely.
    PFB output of listener status and services
    apl11764a001:ORA37a > lsnrctl services LISTENER_ORA37
    LSNRCTL for Linux: Version 11.1.0.7.0 - Production on 26-MAR-2012 12:18:06
    Copyright (c) 1991, 2008, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_ORA37)))
    Services Summary...
    Service "ORA37_ap" has 1 instance(s).
    Instance "ORA37a", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:2 refused:0 state:ready
    LOCAL SERVER
    Service "ORA37_ap_XPT" has 1 instance(s).
    Instance "ORA37a", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:2 refused:0 state:ready
    LOCAL SERVER
    Service "ORA37aXDB" has 1 instance(s).
    Instance "ORA37a", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:1022 state:ready
    DISPATCHER <machine: apl11764a001, pid: 25970>
    (ADDRESS=(PROTOCOL=tcp)(HOST=apl11764a001)(PORT=10862))
    The command completed successfully
    apl11764a001:ORA37a > lsnrctl status LISTENER_ORA37
    LSNRCTL for Linux: Version 11.1.0.7.0 - Production on 26-MAR-2012 12:18:20
    Copyright (c) 1991, 2008, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_ORA37)))
    STATUS of the LISTENER
    Alias LISTENER_ORA37
    Version TNSLSNR for Linux: Version 11.2.0.2.0 - Production
    Start Date 26-MAR-2012 12:15:17
    Uptime 0 days 0 hr. 3 min. 2 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /grid/product/crs/network/admin/listener.ora
    Listener Log File /grid/product/crs/log/diag/tnslsnr/apl11764a001/listener_ora37/alert/log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=LISTENER_ORA37)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=172.25.169.4)(PORT=62037)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=172.25.169.7)(PORT=62037)))
    Services Summary...
    Service "ORA37_ap" has 1 instance(s).
    Instance "ORA37a", status READY, has 1 handler(s) for this service...
    Service "ORA37_ap_XPT" has 1 instance(s).
    Instance "ORA37a", status READY, has 1 handler(s) for this service...
    Service "ORA37aXDB" has 1 instance(s).
    Instance "ORA37a", status READY, has 1 handler(s) for this service...
    The command completed successfully
    Thank you.
    Regards,
    Dasarath

  • ITunes has stopped working after fresh install

    Hey there,
    Hoping someone can help me out. I've had iTunes for a while but just had to get my computer repaired and after a fresh windows install I am not able to get iTunes to work. I've searched the help forums and tried many things already but had no success.
    Some computer info:
    Windows 7
    Processor: AMD A10-7700K Radeon R7, 10 Compute Cores 4C+6G 3.40 GHz
    Installed memory: 4.00 GB
    System Type: 64-bit Operating System
    The error report I get:
    Problem signature:
      Problem Event Name: APPCRASH
      Application Name: iTunes.exe
      Application Version: 12.1.1.4
      Application Timestamp: 54de1991
      Fault Module Name: CoreAudioToolbox.dll
      Fault Module Version: 7.9.9.6
      Fault Module Timestamp: 54ddd41b
      Exception Code: c000001d
      Exception Offset: 00000000001fa332
      OS Version: 6.1.7600.2.0.0.256.1
      Locale ID: 1033
      Additional Information 1: 4f7c
      Additional Information 2: 4f7c296d7de48197416f5a96255d8b8d
      Additional Information 3: 9f55
      Additional Information 4: 9f55f98d4376c33fdaaf6d0e91a7f07b
    Please help me figure this out.
    I have already tried the following:
    - Uninstalling iTunes and all the components and reinstalling iTunes
    - Uninstalling iTunes and reinstalling in Safe Mode (wouldn't work)
    - Downloading iTunes for slower video cards and installing that (didn't work)
    - Downloading an older version of iTunes (would just rollback during install and not let it complete)
    - Tried a different user on my system and also didn't work
    Any help is appreciated. I love using this product and would like to continue using it.

    also when I open itunes in safemode (using shift+ctrl), it works normally...

  • After Effects CS6 stopped working after Mavericks install

    I started getting a - You cant use this version of the application "Adobe After Effects CS6 with this version of OS X 10.9.1 - You have Adobe After Effects CS6" 11.0 - all my other Adobe CS6 programs are working - photoshop, premiere, bridge ect. Is this a delete and re install or is there a way around this problem?

    You have to run the update for AE. You may have to use the uninstaller and then re-install. I'm guessing that this started after you ran an update for your OS.
    When you ask a question assume that we know nothing about your system or your history with that system. We can provide better help if we know if your system worked before, what changed, and anything else that pertains to your problem. Something as simple as an automatic update to your virus protection can kill another app.

  • Airport disk just stopped working after Leopard install

    My airport disk worked perfectly in Tiger. After installing Leopard i can see airport disks in the finder but when i try to see contents the system hangs up for a few seconds and then i get a message "can't connect to disk" or something similar. I tried reinstalling airport software from cd, upgrading firmware of airport extreme, deleting keys from keychain but still don't work. Any experience?
    Thanks

    Hi,
    This could be related to an authentication issue,could you try to change the authentication of the disk to "With a disk password" or "With base station password" on the disk pane of the airport utility (into the file sharing tab)?
    Regards

  • Macbook Pro Audio line in stopped working after Leopard install

    Anyone know what's up with this? Since I installed Leopard (did an erase and install) my audio line in port isn't working although my built-in microphone is. Ideas? I haven't found a solution so far from my searches.

    I also have this problem but with a slightly different twist..
    I was using my plantronics (old ms gamevoice headset) with 10.5.2 and it worked, then installed the m-Audio Firewire Audiophile beta drivers and neither the audio-in or the m-audio audiophile line-in cause any VU-meter response (nor input) whereas the standard inbuilt microphone does.
    After uninstalling the m-audio drivers the situation is still the same.
    Oddly - if I plug in the headphones into the line-in (rather than microphone) then speak into them I actually get input audio (and VU-meter response) through the MBP's audio-in.
    So the story about no power is used (hence the headphones create enough to register the sound) sounds about true... very annoying as I thought my old headset had died and went out and bought a new one.. that still doesn't explain the audiophile input issues..
    Now I fully expect both companies to point fingers at each other.. I don't care - just get it fixed please.

  • Audio Stopped Working after Gnome3 Install

    I assume PulseAudio may have something to do with this, but audio works neither from within Gnome nor from without - no sound. Another thread (https://bbs.archlinux.org/viewtopic.php?id=116712) suggested changing the output settings in Gnome, so I changed the only thing I could ("Connector") from "Analog Headphones" to "Analog Output", which then provided feedback when attempting to play sound - this behavior makes sense, but I tried it anyway per suggestion. I am running an Nvidia sound card which alsamixer identifies as "HDA Nvidia".
    I was able to get a sound to play by manually specifying a device:
    aplay -D front /usr/share/sounds/error.wav
    Now aplay works without specifying a device again, but other applications (like MPD) and anything graphical do not work. The error from mpc is "ERROR: problems opening audio device" (with or without the pulse audio output uncommented).
    For what it's worth, "pacmd list" does list my sound card, and:
    joshua ~ $ fuser -v /dev/snd/*
    USER PID ACCESS COMMAND
    /dev/snd/controlC0: joshua 1550 F.... pulseaudio
    joshua ~ $ fuser -v /dev/dsp
    joshua ~ $
    Any ideas?
    Update (17 Apr, 19:46 PST):
    Logging into KDE, Phonon with a Xine backend seems to work a little magic. Now, aplay, mplayer, and the graphical players work without tweaking. But MPD still does not. So, in summary: on boot to init 3, no sound; in Gnome 3, no sound; in KDE, sound from most applications.
    What is going on here?
    Last edited by joshdmiller (2011-04-18 02:46:29)

    Ok. Yes, pulse is started in Gnome (and in KDE). It also auto-respawns when I kill it, so I have to be very quick in adding the log-level argument.
    So here's where we are. I log in to tty1 on boot, no pulse running (obviously), I "xinit gnome", open a terminal, and "mpc error.wav" produces no sound. Then:
    joshua ~ $ killall pulseaudio
    joshua ~ $ pulseaudio --log-level=error
    Starts up fine, nothing at all reported. So, I open a new tab, run some commands and voila: sound works perfectly in aplay and mplayer but not MPD. Why does it work now? Back on tab 1, pulseaudio still has reported no issue. On tab 2, I run "mpc play", which produces no error this time, but also produces no sound. So I try aplay and mplayer again and they no longer work. Kill pulse, restart it. Rinse and repeat, same result.
    So, fine, Gnome3 from testing has some quirks - I knew what I was getting into when I installed it. And I know that MPD and pulse do not always get along. But - and please forgive my pulse ignorance here - when I am not in Gnome3 and pulse isn't running (and even the X server isn't running), why would MPD not work on the alsa output that's configured by default and that worked prior to the install of Gnome3?
    Thanks!
    Edit: A couple typos: Should be "aplay error.wav" and not "mpc error.wav". And on log in to the tty, aplay produces no sound then either. And the MPD question at the end is also for aplay, mplayer, and everything else.
    Last edited by joshdmiller (2011-04-18 04:38:51)

  • Microphone stop working after i installed win 7 64x ultimate (dv9740)

    its say's in the microphone properties 
    "High Defenition Audio Device" 

    Hello mrsray89.  I understand you're unable to get your internal microphone to work.
    Did the microphone work as expected when you had Windows Vista installed?
    Have you tried installing the HP Software Framework and HP Support Assistant?  You can then run the HP Support Assistant application and it will scan your system and install any missing drivers.
    Also, I believe the internal microphone is part of the webcam's hardware.  So, knowing whether the webcam is working will be helpful information. Try the following.
    Click Start, type "Device Manager," and press Enter.
    Expand the "Digital Imaging Devices" section.
    List what you see.
    Have a great day!  I'll be watching for your reply.
    Please click the white star under my name to give me Kudos as a way to say "Thanks!"
    Click the "Accept as Solution" button if I resolve your issue.

  • Everything involved with my sound has stopped working after I installed Lion.. What do I do?

    I have a bunch of movies, and seasons downloaded onto my Mac Pro, and I just recently installed Lion.
    Now I cannot watch any of my movies, or seasons..
    Im wondering if it has a lot to do with the previous software I was using isn't compatible with Lion..
    I cant think of any other possible explination..
    Anyone care to help?
    Thanks

    So, I spent about an hour on the phone to Apple Support (there is no Apple Store here in Hong Kong yet!).
    I was asked to delete a system file, and restart, Check my HDD in recovery mode, and boot up in Safe mode - all to no avail!!!
    I then got very worried when the technician started saying something like "Do you have all of your files backed up somewhere???"
    I have a LaCie Wireless Space, which has not been updated to provide Time Machine bakups again! Old ATF problems, so until the time that I get this sorted, no, I will not erase my HDD!!!
    Anyone with this problem who has had it fixed?
    D

Maybe you are looking for

  • Problem in refreshing the data in OBIEE answers?

    Hi, My report doesn't show the latest data in the database. I tried restarting my BI server and Presentation server also. But it is still showing the old data only. But in Admin tool im able to view the latest data. What could be the reason for this?

  • Why can't i install itunes and quicktime on my windows 7 64 bit pc

    I have always failed trying to install iTunes to my Windows 7 64 bit PC. When installing it'll pause for a long time in this stage: After a while it'll then show this message: I tried it a couple of times and it always ends up like this. And moreover

  • Ipad 4 cannot restore Os 6.1 error (-1)

    Dear all, When restoring my ipad 4 32gb wifi + cellular from 6.0.1 to 6.1, it always apears the msg unkown error occurred (-1). When restore to 6.0.1 with Shift restore it occurred error 3194. I tried another computer but it doesn t help. Now my ipad

  • New contract status

    Hi, We are having classic scenario with GOA implemented. We are doing spend analysis using customised abap reports.We want to create status key "EXPIRED" for expired contract based on contract validity. Is there any way to create this status in table

  • JAXB beta optional attributes

    I am evaluating JAXB beta release and I am wondering how to tell if an optional attribute was specified in the document. In particular, my attribute is of type xsd:int. The Impl class has a "protected boolean has_XXXXX" field, but I don't see a publi