Solaris 10 [11/06]: Second CPU not accessible using psradm / psrinfo / ...

Hi all,
Some months ago I've build up a small Server for some home projects with Solaris 10 x86 11/06. All things are running fine but Solaris does not use the second CPU that is installed.
I have a FSC D1306 server board from an old Primergy P200 server.
First, I saw that my system only uses one CPU:
# psrinfo
0       on-line   since 10/04/2007 20:13:27I then checked, if the system recognizes the second processor socket at all:
# prtdiag
System Configuration: FUJITSU SIEMENS D1306
BIOS Configuration: FUJITSU SIEMENS // Phoenix Technologies Ltd. 4.06  Rev. 1.05.1306             12/12/2003
==== Processor Sockets ====================================
Version                          Location Tag
Pentium(R) III                   CPU 0
Pentium(R) III                   CPU 1
[ . . . ]After that I wanted to see, if the second processor has been detected properly by the BIOS:
# smbios -t SMB_TYPE_PROCESSOR
ID    SIZE TYPE
4     61   SMB_TYPE_PROCESSOR (processor)
  Manufacturer: Intel
  Version: Pentium(R) III
  Location Tag: CPU 0
  Family: 17 (Pentium III)
  CPUID: 0x383fbff000006b1
  Type: 3 (central processor)
  Socket Upgrade: 4 (ZIF socket)
  Socket Status: Populated
  Processor Status: 1 (enabled)
  Supported Voltages: 1.7V
  External Clock Speed: Unknown
  Maximum Speed: 1400MHz
  Current Speed: 1400MHz
  L1 Cache: 6
  L2 Cache: 7
  L3 Cache: None
ID    SIZE TYPE
5     61   SMB_TYPE_PROCESSOR (processor)
  Manufacturer: Intel
  Version: Pentium(R) III
  Location Tag: CPU 1
  Family: 17 (Pentium III)
  CPUID: 0x383fbff000006b4
  Type: 3 (central processor)
  Socket Upgrade: 4 (ZIF socket)
  Socket Status: Populated
  Processor Status: 1 (enabled)
  Supported Voltages: 1.7V
  External Clock Speed: Unknown
  Maximum Speed: 1400MHz
  Current Speed: 1400MHz
  L1 Cache: 8
  L2 Cache: 9
  L3 Cache: None^^ Well, I guess it was detected properly. But after running prtconf and prtpicl I saw that there was only one processor available to Solaris.
Can anyone help me enabling the second CPU? I would like to use it because I have some applications that would run much better on two CPU's rather than one.
Thanks for all tips,
C]-[aoZ
Edited by: CHaoSlayeR on Oct 28, 2007 7:04 AM

If memory serves, to get multi-cpu working, you must enable acpi in the bios. Given that this is a pIII, it is in the era where api was either really buggy or was off by default (so you should also check to make sure the bios was the latest...)
-r

Similar Messages

  • Fan running at high when cpu not being used, Macbook not responding - Help!

    Please help!
    Quite often now when I leave my macbook for an a few hours (the screen goes to sleep but not the computer), I come back to the fan running at full speed and then when I touch the trackpad, I can move the mouse around, but nothing responds (i.e. when I move the mouse over the dock, the dock doesn't pop up...and I can't click anything on the desktop). So I have to hold down the power button to shut it off and then restart the computer. Then it works fine, but if I leave it for a while and come back, half the time I come back I encounter this problem again.
    Any help?

    Check your activity monitor. Sounds like you have a program running in the back ground your not aware of.
    You might also try to reset the SMC and/or PRAM.

  • ManagedBean is not accessible, using JSF2.2, Spring 4.0 and SpringSecurity 3.2

    Dear All,
    I am developing a Dynamic Web Application, using JSF 2.2, Spring Framework 4.0 and Spring Security 3.2. I, first, integrated JSF and Spring framework (JSF Page => ManagedBean => Service => DAO). It was working fine. But when I introduced Spring Security, I am unable to access ManagedBean in JSF page and getting no error at all. ManagedBean is not even invoked (even constructor is not called). I have been surfing for this issue for 2 days now, but couldn’t find any resolution.
    My config files are as following:
    faces-config.xml
        [code=java]<?xml version="1.0" encoding="UTF-8"?>
        <faces-config
            xmlns="http://xmlns.jcp.org/xml/ns/javaee"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd"
        version="2.2">
            <application>
         <el-resolver>org.springframework.web.jsf.el.SpringBeanFacesELResolver</el-resolver>
            </application>
        </faces-config>[/code]
    Web.xml
       [code=java] <?xml version="1.0" encoding="UTF-8"?>
      <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns="http://java.sun.com/xml/ns/javaee"
      xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
      id="WebApp_ID" version="3.0">
      <display-name>my-app-ui</display-name>
      <welcome-file-list>
      <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
      <!-- Spring Framework -->
      <listener>
      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
      </listener>
      <listener>
      <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
      </listener>
      <!-- Spring context config locations -->
      <context-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath*:/applicationContext.xml</param-value>
      <param-value>classpath*:/securityConfig.xml</param-value>
      </context-param>
      <!-- PROJECT STAGE START FOR DEVELOPEMENT MARK IT AS DEVELOPMENT. FOR TESTING / PRODUCTION REMOVE THIS -->
      <context-param>
      <param-name>javax.faces.PROJECT_STAGE</param-name>
      <param-value>Development</param-value>
      </context-param>
      <!-- Spring Security -->
      <filter>
      <filter-name>springSecurityFilterChain</filter-name>
      <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
      </filter>
      <filter-mapping>
      <filter-name>springSecurityFilterChain</filter-name>
      <url-pattern>/*</url-pattern>
      <dispatcher>FORWARD</dispatcher>
      <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
      <!-- JSF -->
      <servlet>
      <servlet-name>Faces Servlet</servlet-name>
      <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
      <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.html</url-pattern>
      </servlet-mapping>
      </web-app>
    [/code]
    applicationconContext.xml
      [code=java]<beans xmlns="http://www.springframework.org/schema/beans" 
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
       xmlns:tx="http://www.springframework.org/schema/tx"  
       xsi:schemaLocation="http://www.springframework.org/schema/beans  
      http://www.springframework.org/schema/beans/spring-beans.xsd 
      http://www.springframework.org/schema/context  
      http://www.springframework.org/schema/context/spring-context.xsd"> 
      <context:annotation-config />
      <context:component-scan base-package="com.myapp.managedbean"/>
      <context:component-scan base-package="com.myapp.service"/>
      <context:component-scan base-package="com.myapp.domain"/>
      <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
      <property name="jndiName" value="java:comp/env/jdbc/myDS" />
      </bean>
      <bean id="txManager"
      class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
      <property name="dataSource" ref="dataSource" />
      </bean>
      </beans> 
    [/code]
    securityConfig.xml
      [code=java]<b:beans xmlns="http://www.springframework.org/schema/security" 
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:b="http://www.springframework.org/schema/beans"
       xsi:schemaLocation="http://www.springframework.org/schema/beans  
      http://www.springframework.org/schema/beans/spring-beans.xsd 
      http://www.springframework.org/schema/security
      http://www.springframework.org/schema/security/spring-security.xsd "> 
      <debug />
      <http pattern="/resources/**" security="none" />
      <http pattern="/login*" security="none" />
      <http auto-config="true" use-expressions="true" disable-url-rewriting="true" >
      <intercept-url pattern="/**" access="authenticated" />
      <form-login authentication-failure-url="/loginfailed.html"
      default-target-url="/" always-use-default-target="true"/>
      <access-denied-handler error-page="/denied.html"/>
      <session-management invalid-session-url="/session-expire.html" session-fixation-protection="none" />
      <logout delete-cookies="JSESSIONID" invalidate-session="true" />
      <http-basic />
      </http>
      <authentication-manager>
       <authentication-provider>
      <user-service>
       <user name="user_admin" password="password" authorities="ROLE_USER,ROLE_ADMIN" />
       <user name="user" password="password" authorities="ROLE_USER" />
      </user-service>
       </authentication-provider>
      </authentication-manager>
      </b:beans>
    [/code]
    first-jsf-page.xhtml
      [code=java]<!DOCTYPE html >
      <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets">
      <head>
      </head>
      <body>
      Managed bean data: #{myMB.fetchDataFromService()}
      </body>
      </html>[/code]
    ManagedBean
       [code=java] @Component("myMB")
        @Scope("session")
        public class MyMB implements Serializable {
            public MyMB () {
      System.out.println("Constructor called");
      @Autowired 
      @Qualifier("myService") 
      public MyService myService;
      Public String fetchDataFromService() {
      System.out.println("Invoking Service"); 
      return myService.getMessage(); 
    [/code]
    MyService
      [code=java]public interface MyService {
      public String getMessage(); 
      }[/code]
    MyServiceImpl
      [code=java]@Service("myService") 
      public class MyServiceImpl implements MyService { 
      @Override 
      public String getMessage() { 
       return "JSF and Spring Integrtion - Done"; 
      }  [/code]
    If I remove "DelegatingFilterProxy" from Web.xml, everything works fine. Kindly help me out here.
    I am using Eclipse and tomcat server.

    bump anyone please ?

  • Solaris 8 does not recognise second CPU

    Hi,
    my Solaris 8 installation on my E250 does not recognise my second CPU. prtdiag and psrinfo only show one CPU. OBP reports the second has no problem and is online (ASR). It even has the same temperature as the other operating one...
    Can someone help me?
    Thanks in advance to all,
    Horst

    # eeprom
    check the .upa-noprobe-mask variable. It has to be 0 to see all cpu's
    depending on OBP revision, it may be called upa-noprobe-list
    # eeprom .upa-noprobe-mask=0
    # init 6 (to reboot)

  • 2nd CPU not recognized on Compaq Proliant 1500

    I have x86/2.6 running on a dual CPU Compaq Proliant 1500, but it's not recognizing the 2nd CPU. (verified with mpstat)
    Does anyone know how to convince x86 to initialize the 2nd CPU?
    Thanks in advance!
    David

    Saw your post at http://forum.sun.com/profile.jsp?user=10948. I was having the exact same problem with the EXACT same hardware and I got the solution for you too. No charge! :-)
    I contacted Compaq support and got a REAL sharpy on the phone. Compaq EISA config has an undocumented feature called 'Advanced'. To turn on the second CPU in Compaq ROM, follow these steps.
    Start EISA config.
    To use the 'Advanced' feature, merely hit 'CTRL-A' at the EISA config main menu.
    Run configure system.
    When it is done, go into Edit Details and scroll down until you see a line item called APIC.
    It probably says DISABLED.
    Highlight it and hit the ENTER key.
    At that point, you'll see two options for 'ENABLE'.
    Pick the one that says 'Full Table'. 'Full Table - Mapped' evidently don't mix with Solaris.
    Save and exit, cycle power, and restart EISA config.
    Save, exite, recycle power again.
    At this next power up, the post message should say 'Processors Running at xxx' The next line should say Processor 2 initializing. When Solaris boots up, use the psrinfo command (no options) and it should show both processors up and running. psadm allows you to change the state of the other processor.
    Let me know how this works. Mine is working like a champ!

  • I have an older iMAC that once burned CD's with no issues. Now I get an error message saying "The attempt to burn a disc failed. The device is not accessible, probably because it was removed". I have never had it touched so the device was not removed.Help

    I have an olde iMac that once I have an older iMAC that once burned CD's with no issues. Now I get an error message saying "The attempt to burn a disc failed. The device is not accessible, probably because it was removed". I have never had it touched so the device was not removed. Please advise as to what could be the problem. How to fix. Thanks

    Try resetting the SMC and PRAM first, if that doesn't help try a cleaning disc.....and then buy an inexpensive external burner. Slimline super drive failures are all too common.
    To reset the SMC
    Shut down the computer.
    Unplug the computer's power cord.
    Wait fifteen seconds.
    Attach the computer's power cord.
    Wait five seconds, then press the power button to turn on the computer.
    Resetting NVRAM / PRAM
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • Firmware-upgrade failed router not accessible

    during firmware-upgrade the connection to E4200 got lost due to power-outage, now the E4200 router is not accessible, power-led flashes ...
    the factory-ip-address 192.168.1.1 responds on ping, but nothing else ...
    how to get a working environment back?

    Once reset the router. Steps to reset the router:
    Push the reset button on router for 30 seconds, turn off the router wait for 30 seconds and then power it on. After this process reconfigure the router. Power light should blink when you perform the reset process.
    Once the light gets stabilize on the router perform the following steps:
    #  Open up the browser and on the address bar type 192.168.1.1, it will prompt for the username and password. Provide the username as 'admin' and password as 'admin' or 'password'. Then it will open up the Router setup page.
    # Then click on status and check the firmware version. If its not updated then upgrade the firmware once again.
    # Then after firmware upgrade  reset the router again as explained above.
    Then uninstall the existing Cisco connect software from the computer. After uninstallation then configure the router again using Cisco Connect CD as you did earlier.

  • Shared Variable Deployment not accessible in Build Specificat​ion

    Hi everyone,
    I have a large project developed in LV 8.6.1 from which I executed numerous applications. I converted the project in LV 11 sp1f1, everything works well in code, everything is saved.
    I wanted to build executable without cod change for LV 11 here is what I found:
    Build the executable with Build Specifications inherited from LV 8.6 for which I checked on Use Labview 8.x file layout in Advanced. My application programmatically deploys all internal shared variables and when I wanted to access the Shared Variable Deployment in project in Build Specification then labview locked and I have to kill LV. Other time I did not access the Shared Variable Deployment and I start building executable when it looks the build progressing similar as in LV8.6 and last step before popping the attached error all the saved files in the build location were deleted.
    I set up a build specification just for this LV 11. Again I wanted to access the Shared Variable Deployment and again labview is looping something from which I had to kill labview. I opened it again, I skipped the shared variable deployment line and I build the application. Because my application programmatically deploys shared variables I included in builder the lvlib where shared variables belong. The build files does not includes this time as output the file *.lvlib for which my inherited LV8.6 code programmatic deploys shared variables.
    My question is should I change the code (very large code) taking out the programmatic variables deployment and to relay on the build executable to do deploy them then what should I do with Shared Variable Deployment line in Build Specification which for my large application is not accessible or is any way to still use the shared variable as in LV8.6 but for which I need *.lvlib in build location.
    Another important issue: when I launched my application built as I showed in previous second case, first thing that I see is that my application is not able to save errors (I have a log file where I save different drivers or communication errors). Any idea why application even without shared variable deployed is not able to write a text file? I am administrator of my computer with all rights.
    Thank you,
    Virginia

    No, I am not able to close Labview because of the windows error with only one button to close application. The application is correct executed. Next time when I start this project it is asking me if I want o recover even if I accept to recover it looks what I had last time it does not save.
    For my application also I am building a VI without diagram built as source distribution for which I set in my builder this top vi and I excluded everything from the project because my application copies instances at the run time of this vi as many times as hardware modules I have in the system and also I have this vi included in my application (for the content of this vi). My vi contains interfaces for hardware configuration as well as drivers functions call for each hardware module I have to control in my application. Everything is good building this vi, but in less then one minute after the build is executed and build interface closes again I have the windows error which force me to close project. Next time when I open project I did not see the option to recover the project.
    In the mean time I received second message and I wonder if you refer to files names or to folder names or all together. I checked and the maximum size is 122 characters in the vi paths.
    Thank you,
    Virginia

  • Photos visible in iPhoto application but not accessible for upload

    Any help anyone can provide with this is greatly appreciated. I took pictures of a friends wedding and have been trying to order a photobook as a gift. I decided to try to use iPhoto to make the book. I don't use iPhoto very often and at the start of this, my iMac was running on the Tiger OS and an old version of iPhoto (I think 5 or 6). After completing the  first version of my photobook, I tried to place an order, but got a message that my version of iPhoto wasn't supported any longer and I'd  have to upgrade.
    I called the Apple store and ordered the Mac Box Set to upgrade my operating system to Snow Leopard and my iLife to version 11. The woman at the Apple store had me check my system info., available space, etc. and she assured me that my system should be able to handle the upgrade. I went ahead with the upgrade, loading the new operating system first and then iLife. The install seemed to go just fine, I never got any error messages and all the applications appear to function properly. So, I used the new version of iPhoto to create a photobook. I then placed the order the first time. On my end the process went smoothly and the upload completed without interruption. However, I got an e-mail message 4 days later saying my order couldn't be completed because files did not upload properly. So, I tried to place the order again, following the instructions to make sure that all my other applications were closed, etc. Once again the process seemed to be completed without any issues. However, now a week later, I once  again got the error message that my order could not be completed because files did not upload properly.
    So, I decided to try to place an order through a different vendor. Now I have discovered that all my recent photos (despite appearing in the iPhoto) are not accessible when I try to access them for upload to the vendor's site. The icon for iPhoto library is grayed out and there is no longer an option to access my photo rolls through finder. So, now I am unable to place the order for the photobook.
    Can anyone help me figure out how to fix this? Any help you can provide is greatly appreciated.

    Nothing to be fixed. Just a little learning for you.
    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • Why site database server for Central Admin site not accessible?

    Hello everyone,
    I've this issue where; when connecting a primary site to existing central administration site; setup prerequisite checker 
    continue to notify it cannot establish connection to SQL server having central administration site database. The SQL server 
    having central site database is installed locally on the server central administration site is hosted on. Both servers 
    (central administration site server, the new server to host child primary site required to join that central administration 
    site) having following configuration:
    A. Central Administration site server, with site database server installed locally: 
    Name:             HQCAS
    OS:                WS 2008 R2 SP1, fully patched.
    SQL Server:     SQL Server 2008 R2 with SP2. Correct required SQL server collation set supported by CM2012.
    SQL Server named instance: CASDB
    Local firewall ports opened: 1433, 4022  (via inbound rules created in group policy, same GPO applies to primary site 
    server)
    SQL Server broker service Enabled: True.
    TCP/IP: All dynamic ports left blank to support static port 1433.Static port 1433 configured for all IPs. 
    IP Address: 10.1.1.250/8
    Local SAM:      Both server computer accounts added to local 'Administrators' group on both servers.
    Domain service account: svcCASDB
    SPNs registered:        2x, one for HQCAS hostname on instance CASDB on port 1433, second for FQDN for HQCAS on instance 
    CASDB on port 1433.
    SQL Server Logins:   Security group containing both computer accounts for HQCAS & STPRS. Both account having sysadmin SQL 
    server role assigned.
    SQL Server browser service running.
    B. Primary site server, with SQL server installed locally: to join HQCAS CM2012 hierarchy:
    Name:             STPRS
    OS:        WS 2008 R2 SP1, fully patched.
    SQL Server: SQL Server 2008 R2 with SP2. Correct required SQL server collation set supported by CM2012.
    SQL Server named instance: CM12PRIMARY
    Local firewall ports opened: 1433, 4022  (via inbound rules created in group policy, same GPO applies to central 
    administration site server)
    SQL Server broker service Enabled: True.
    TCP/IP: All dynamic ports left blank to support static port 1433.Static port 1433 configured for all IPs. 
    IP Address: 172.168.1.250/16
    Local SAM:      Both server computer accounts added to local 'Administrators' group on both servers.
    Domain service account: svcCASDB
    SPNs registered:        2x, one for STPRS hostname on instance CM12PRIMARY on port 1433, second for FQDN for STPRS on 
    instance CM12PRIMARY on port 1433.
    SQL Server Logins:   Security group containing both computer accounts for HQCAS & STPRS. Both account having sysadmin SQL 
    server role assigned.
    SQL Server browser service running.
    Tests performed:
    Telnet to/from both HQCAS/STPRS on ports 1433, 4022 establishes connection. Please help
     

    Hello friends,
    My finding it finally is....there wasn't any configuration issue as I mentioned above.
    I'm using an evaluation edition of SQL Server 2008 R2; it just allows default instance (MSSQLSERVER) to be used, not a named instance. 
    The confirming test for this was...I re-installed SQL Server with all the same settings except changing from a named instance to default; once I finished applying service pack 3. I could initiate WSUS 3.0 SP2 x64 setup and point it to use this SQL server.
    WSUS setup completed without any errors. This was not happening when named instance was all configured properly. It was just not accessible from outside.
    Well this is what my finding is. For lab environment of CM2012 it suffices the need.
    Regards,
    Shahzad.

  • System Landscape Directory is not accessible on NW04 Sneak Preview

    Hi,
    I installed Netweaver sneak preview Full Java edition on a server and when i access the NW administrator at the url http://...:50000/nwa.
    In "Overview" of system management there are 2 warnings :
    System Landscape Directory is not accessible
    and
    Only local system can be administered
    But SLD is working i can assess it on http://...:50000/sld
    Can anybody help me ...?

    Hi,
    NWA works out of the box for the local Java stack. No SLD needed. Its just an information.
    The second flavor of NWA is to act as a central monitoring tool. In that case, some things have to be configured (e.g. the connection between NWA and the SLD). Information about that can be found in SMD service.sap.com/nwa, or probably here
    https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/11c7653d-0a01-0010-dc92-de6e5493e8f3 [original link is broken] 
    (page under construction).
    Best regards
    Christoph

  • Second CPU in D10

    I have two D10 6493-19U.  I just ned one.  I put the CPU and memory into one system.  BIOS is updated to the latest VER. BUT BIOS does not see second CPU.  They are same CPU from the same models.  I know both CPU work and I tried putting both of them in both systems no luck.  BIOS will only see one CPU.  I have 8 Gig of memory in the system.  Am i mising something????   Does the BIOS show 2 CPUs?
    Solved!
    Go to Solution.

    Tx for Help.

  • CPU not supported

    Hi, i have a HP Pro 3015 microtower and i bought an AMD Phenom II X4 955 Black Edition, i checked my mainboard (Violet6) in the hp website and it supports this cpu, but when i start my pc i get a message like "CPU not supported, the computer will shut down i few seconds". Any help?
    (Now i'm using the integrated Athlon II X2)
    This question was solved.
    View Solution.

    Hi,
    Well, that why I said: check BIOS first. Other thing comes to my mind, the PSU is only 300W therefore it may not have enough power to drive the new CPU.
    Good luck.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (p

    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that
    the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)(Microsoft SQL Server, Error: 2)
    The system cannot find the file specified
    Cannot connect to COWBOYS.
    Here are the technical details===================================
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider:
    Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&EvtSrc=MSSQLServer&EvtID=2&LinkId=20476
    Error Number: 2
    Severity: 20
    State: 0
    Program Location:
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.Connect(ServerInfo serverInfo, SqlInternalConnectionTds connHandler, Boolean ignoreSniOpenTimeout, Int64 timerExpire, Boolean encrypt, Boolean trustServerCert, Boolean integratedSecurity, Boolean withFailover)
       at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean ignoreSniOpenTimeout, TimeoutTimer timeout, Boolean withFailover)
       at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString connectionOptions, SqlCredential credential, TimeoutTimer
    timeout)
       at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(TimeoutTimer timeout, SqlConnectionString connectionOptions, SqlCredential credential, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance,
    SqlConnectionString userConnectionOptions, SessionData reconnectSessionData)
       at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
       at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
       at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
       at System.Data.SqlClient.SqlConnection.Open()
       at Microsoft.SqlServer.Management.SqlStudio.Explorer.ObjectExplorerService.ValidateConnection(UIConnectionInfo ci, IServerType server)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()
    ===================================
    The system cannot find the file specified
    I have tried from so many forms. This is so frustrating. Thank for everyone/anyone who wants to help. So this is what happened: I had to uninstall my previous sqlserver 2012(which worked great) for some reason, and I uninstalled everything from that download.
    Then I installed the trial edition of sql server 2012 (64 Bit) and It wouldn't connect to the database. (Error mentioned above.) My local DB is COWBOYS. (COWBOYS is also my computer name.) After this, I have tried downloading sqlexpress and sqlserver 64bit
    many times and cannot connect to my local DB. 
    How do I connect to my Local DB? 
    Also, I think this might help: (When I run sqlserve.exe, which I was able to find in C:\Program Files\Microsoft SQL Server\110\LocalDB\Binn, I get an error: Your SQL server installation is either corrupt or has been tampered with(Error getting
    instance ID from name). Please uninstall then re-run setup to correct this problem.
    I would happily re install it, if it wasn't my 20th time.
    I don't have any remote connections, I don't use username/password, only window authentication. I work mostly on visual studio, but without able to store /retrieve data, I don't know how to survive.
    May be the solution is very simple, but I am too frustrated. 
    Some of the things I have tried:
    From a command prompt, enter one of the following commands:
    net start "SQL Server Agent (MSSQLSERVER)" OR 
    net start "SQL Server Agent(instancename)"(for instance)
    on my sql configuration, I cannot start anything because there is nothing there to start. I can post more details, if that would help. Also, some more details about the error:
    Details
    Product:
    SQL Server
    ID:
    2
    Source:
    MSSQLServer
    Version:
    10.0
    Component:
    SQLEngine
    Message:
    An error has occurred while establishing a connection to the server. When connecting to SQL Server, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error:
    40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    Explanation
    SQL Server did not respond to the client request because the server is probably not started.
    User Action
    Make sure that the server is started.
    Version:
    9.0
    Component:
    SQLEngine
    Message:
    An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error:
    40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    Explanation
    SQL Server did not respond to the client request because the server is probably not started.
    User Action
    Make sure that the server is started.
    Any one that can help me, I will be greatful. Thank you so much. p.s. please ask me anything if you have any questions.

    It sounds like there are a couple things going on here.  First check if you have a successful install of SQL Server, then we'll figure out the connection issues.
    Can you launch SQL Server Configuration Manager and check for SQL Server (MSSQLSERVER) if default instance or SQL Server (other name) if you've configured your instance as a named instance.  Once you find this, make sure the service is started. 
    If not started, try to start it and see if it throws an error.  If you get an error, post the error message your hitting.  If the service starts, you can then launch SSMS and try to connect.  If you have a default instance, you can use the machine
    name in the connection dialog.  Ex:  "COWBOYS" where Cowboys is the machine name.  However, if you named the SQL Server instance during install, you'll need to connect using the machine\instance format.  Ex:  COWBOYS\Romo (where Romo
    is the instance name you set during install).
    You can also look at the summary.txt file in the SQL Server setup error logs to see what happened on the most recent install.  Past install history is archived in the log folder if you need to dig those up to help troubleshoot, but the most
    recent one may help get to the bottom of it if there is an issue with setup detecting a prior instance that needs to be repaired.
    Thanks,
    Sam Lester (MSFT)
    http://blogs.msdn.com/b/samlester
    This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click
    "Mark as Answer" and
    "Vote as Helpful" on posts that help you. This can be beneficial to other community members reading the thread.

  • Database table 'e' is not accessible

    Hi all,
    like many others in the web I'm having problems deploying CMP Beans on BEA. I'm using Weblogic 8.1 and
    get the following error message:
    "[EJB:011076]Unable to deploy the EJB 'B' because the database table 'b' is not accessible. Please ensure that this table exists and is accessible."
    After a lot of research I understand the problem now. Weblogic is checking the cmp-fields at deployment time using something like "SELECT xx1, xx2, xxx3 FROM ttt1 WHERE 1 = 0". Some databases have no problem with such a select. My Solid database unfortunately does a full table scan on it. Having only some rows in the table b there is no problem at all, but I have more than 500.000 entries. :-(
    My question: Is there a workaround? Can I somewhere specify the SQL - command for checking mapped cmp-fields? Or can I disable the check somehow?
    I think it is a very annoying problem, many users out there have.
    Thanx in advance
    Robert

    Robert Jung wrote:
    Hi all,
    like many others in the web I'm having problems deploying CMP Beans on BEA. I'm using Weblogic 8.1 and
    get the following error message:
    "[EJB:011076]Unable to deploy the EJB 'B' because the database table 'b' is not accessible.Please ensure that this table exists and is accessible."
    >
    After a lot of research I understand the problem now. Weblogic is checking the cmp-fieldsat deployment time using something like "SELECT xx1, xx2, xxx3 FROM ttt1 WHERE 1 = 0".
    Some databases have no problem with such a select. My Solid database unfortunately does
    a full table scan on it. Having only some rows in the table b there is no problem at all,
    but I have more than 500.000 entries. :-(
    >
    My question: Is there a workaround? Can I somewhere specify the SQL - command for checkingmapped cmp-fields? Or can I disable the check somehow?
    I think it is a very annoying problem, many users out there have.Hi. All commercial quality DBMSes I know, are smart enough to evaluate constant search
    criteria, and not to access all the rows if it's a-priori known that no rows will
    qualify. I would ask 'Solid' for a fix.
    However, you can generate our EJBs with the option of retaining the generated
    JDBC code, which you could alter and recompile for your use. You might be able to
    substitute some DatabaseMetaData call to getTableColumns() to get the same info...
    Joe
    Thanx in advance
    Robert

Maybe you are looking for

  • How do I place images in a rotatable divided cube using Java?

    Hello- I am creating a puzzle that is like the "Rubik's Cube," although this puzzle is played on the computer monitor, and the puzzle involves images placed on the sides of a cube. The mouse is used to rotate the sides of the cube. Each side of the c

  • X-FI Titanium + Win 7 64 / No AutoUpdate

    Hi, I've installed Windows 7 64bit, then the CD which came with X-FI Titanium PCI-E card?and then run Autoupdate. I receive the message that no Creative products were detected. I've tryed all advices found on this forum run in compatibility with Vist

  • Need to add a custom field in ME23N  item detail

    Hi Experts, I am new to SAP. Got an issue to add custom field in ME23N transaction. In item detail part , there is a tab called Retail inside that tab i need to add  new field.. is it possible to do?? if so kindly let me know.. Thanks in advance Rega

  • Streaming/playing movies with Quicktime

    Whenever I click on a movie clip, the computer starts downloading the movie instead of just playing it. How can I tell QT to just play the clip without downloading/saving it? Thank you.

  • Don't we have equivalent code in JavaScript?

    Hello I want to figure out that the given text field (say, my_text_field_1) has some value in it / is user entered any value in it / is it holding any value in it? I found the below piece of code in FormCal, but, am looking the same purpose solving c