For server Eagle-PROD-Instance, the Node Manager associated with machine

I have a wlst script that creates a domain and a managed server. I associate the server with a machine that's attached to a node manager. It creates the managed server fine but when I try and start it I get this error
For server Eagle-PROD-Instance, the Node Manager associated with machine Eagle-Machine is not reachable.
All of the servers selected are currently in a state which is incompatible with this operation or are not associated with a running Node Manager or you are not authorized to perform the action requested. No action will be performed.
The machine is associated with the Node Manager and the NM is running. I can start the managed server from the command line, but not from the admin console
This is the script, am I missing something?
Thanks
name: createManagedServer.py
description: This script create the weblogic domain, and executes each weblogic queue module
subfile. it reads a property file : weblogic_wlst.properties for server domain information
author     : mike reynolds - edifecs 2011
created     : April 8th 2011
import sys
from java.lang import System
from java.util import Properties
from java.io import FileInputStream
from java.io import File
from weblogic.management.security.authentication import UserEditorMBean
from weblogic.management.security.authentication import GroupEditorMBean
from weblogic.management.security.authentication import UserPasswordEditorMBean
# Loads the contents a properties file into a java.util.Properties
# configPropFile = "weblogic_wlst.properties"
def loadPropertiesFromFile(configPropFile):
     configProps = Properties()
     propInputStream = FileInputStream(configPropFile)
     configProps.load(propInputStream)
     propInputStream.close()
     return configProps
def getProperties():
     importConfigFile = sys.argv[1]
     print importConfigFile
     domainProps = loadPropertiesFromFile(importConfigFile)
     properties = Properties()
     input = FileInputStream(importConfigFile)
     properties.load(input)
     input.close()
     return properties
def create_users(username, password, description):
# create admin user
cmo.getFileRealms()
try:
userObject=cmo.getSecurityConfiguration().getDefaultRealm().lookupAuthenticationProvider("DefaultAuthenticator")
userObject.createUser(username,password,description)
print "Created user " + username + "successfully"
except:
print "check to see if user " + username + " exists "
def add_user_to_group(username):
print "Adding a user to group ..."
cmo.getFileRealms()
try:
userObject2 = cmo.getSecurityConfiguration().getDefaultRealm().lookupAuthenticationProvider("DefaultAuthenticator")
userObject2.addMemberToGroup('Administrators',username)
print "Done adding user " + username
except:
print "check to see if user " + username + " is already in group "
def connect_server(user,pw,url):
          connect(user,pw,url)
def create_machine():     
try:
print 'Creating machine' + machine
# cd('/')
# create(machine, 'Machine')
mach = cmo.createUnixMachine(machine)
mach.setPostBindUIDEnabled(true)
mach.setPostBindUID('oracle')
mach.setPostBindGIDEnabled(true)
mach.setPostBindGID('oracle')
mach.getNodeManager().setNMType('ssl')
except:
     print "machine exists"
def build_domain():
### Read Basic Template
WL_HOME = "C:/Oracle/Middleware/wlserver_10.3"     
readTemplate(WL_HOME+"/common/templates/domains/wls.jar")
template=WL_HOME+"/common/templates/domains/wls.jar"
cd('Servers/AdminServer')
set('ListenAddress', adminServerAddress)
set('ListenPort', int(adminServerPort))
cd('/')
cd('/Security/base_domain/User/weblogic')
cmo.setPassword('w3bl0g1c')
### Write Domain
setOption('OverwriteDomain', 'true')
print "writing domain " + domainDir + domainName
writeDomain(domainDir+'/'+domainName)
closeTemplate()
create_machine()
arg = "Arguments=\" -server -Xms256m -Xmx768m -XX:MaxPermSize=256m -da\""
prps = makePropertiesObject (arg)
domain = domainDir + domainName
try:
     #startNodeManager()
#nmConnect('weblogic', 'w3bl0g1c', host, 5556, 'AdminServer', domain, 'ssl')
# nmStart('AdminServer')
startServer('AdminServer', domainName, url, adminUser, adminPassword, domainDir, 'true')
except:
print "could not connect to Node Manager"
def create_server():     
# get server instance properties
name = properties.getProperty("serverName")
domain = properties.getProperty("domainName")
port = properties.getProperty("listenPort")
address = properties.getProperty("listenAddress")
servermb=getMBean("Servers/" + name)
machine = properties.getProperty("machineName")
nodePort = properties.getProperty("nodeManagerPort")
domainDir = properties.getProperty("domainDir")
if servermb is None:
          startEdit()
          cd('/')
          cmo.createServer(name)
          cd('/Servers/'+ name)
          cmo.setListenAddress(address)
          cmo.setListenPort(int(port))
          cd('/')
          cmo.createMachine(machine)
          cd('/Machines/' + machine + '/NodeManager/' + machine )
          cmo.setNMType('Plain')
          cmo.setListenAddress(address)
          cmo.setListenPort(int(nodePort))
          cmo.setDebugEnabled(false)
          cd('/Servers/' + name)
          cmo.setListenPortEnabled(true)
          cmo.setJavaCompiler('javac')
          cmo.setClientCertProxyEnabled(false)
          cmo.setMachine(getMBean('/Machines/' + machine ))
          cmo.setCluster(None)
          cd('/Servers/' + name + '/SSL/' + name)
          cd('/Servers/' + name + '/ServerDiagnosticConfig/' + name)
          cmo.setWLDFDiagnosticVolume('Low')
          cd('/Servers/' + name)
          cmo.setCluster(None)
          cd('/Servers/' + name + '/SSL/' + name)
          cmo.setEnabled(false)
### Executable Script
### CreateDomain.py
### Define constants
WL_HOME = "C:/Oracle/Middleware/wlserver_10.3"
print "Starting the script ..."
print "Getting properties ... "
properties = getProperties()
adminServerAddress = properties.getProperty("adminServerAddress")
adminServerPort = properties.getProperty("adminServerPort")
adminUser = properties.getProperty("adminUser")
adminPassword = properties.getProperty("adminPassword")
edifecsUser = properties.getProperty("edifecsUser")
edifecsPassword = properties.getProperty("edifecsPassword")
host = properties.getProperty("host")
domainDir = properties.getProperty("domainDir")
domainName = properties.getProperty("domainName")
user = properties.getProperty("username")
pw = properties.getProperty("passwd")
url = properties.getProperty("adminURL")
machine = properties.getProperty("machineName")
print "Building the domain..."
build_domain()
print "Connecting to server"     
connect_server(adminUser, adminPassword, url)
edit()
startEdit()
# create managed server
# create_machine()
create_server()
print "Creating users"
# starting configuration tree
serverConfig()
create_users(adminUser, adminPassword, "Administrator")
add_user_to_group(adminUser)
create_users(edifecsUser, edifecsPassword,"Administrator")
add_user_to_group(edifecsUser)
# have to restart edit to save config
edit()
startEdit()
# nmKill('AdminServer')
print "saving configuration"
try:
     save()
     activate(block="true")
     print "script returns SUCCESS"
     print "admin server is running"
     print "starting server " + name
     startServer(domainName, name ,url,adminUser, adminPassword, domainDir,'true')
except:
     print "failed to save server"
     dumpStack()

Actually the cert is coming from your Dev machine but it is sending the Prod cert.
What cert is used by your admin server ? It should match the host name.
So your Dev machine is apparently using a copy of the prod cert / keystore rather than using its own DEV cert. It's not clear from your post whether this is the nodemanager using the wrong cert, or the managed server. So both should be checked.
The managed servers need to be using a cert that matches their host name. If you have a managed server on VM-BEA-DEV, then the cert needs to be CN=VM-BEA-DEV. You can also use a load-balancer CN name in the cert if you have the cluster's HTTP values set to match.
In your nodemanager.properties, are you explicitly accessing keystores, such as with:
KeyStores=CustomIdentityAndJavaStandardTrust
CustomIdentityAlias=some_alias
CustomIdentityKeyStoreFileName=some_path_to_keystore
CustomIdentityKeyStorePassPhrase={3DES}...
CustomIdentityKeyStoreType=jks
CustomIdentityPrivateKeyPassPhrase={3DES}
In my multi-machine clusters, I have multiple certificates such as:
admin machine1:
has a cert for use by the admin server and NM that matches the host name ( with node manager.properties entries such as the above )
has a 2nd cert that matches the load-balancer name for the cluster - used by the managed servers
all other machines:
has a cert for use by NM that matches the host name ( with node manager.properties entries such as the above )
has a 2nd cert that matches the load-balancer name for the cluster - used by the managed servers

Similar Messages

  • For server the Node Manager associated with machine is not reachable

    Hello all,
    I am getting this error, when i start my Managed Server which is in shutdown state
    For server SAA-Dev-1, the Node Manager associated with machine vm-bea-dev is not reachable.
    All of the servers selected are currently in a state which is incompatible with this operation or are not associated with a running Node Manager. No action will be performed.
    The configuration details are
    i am using weblogic 9.2 MP3 version in windows 2k3 server.
    It has a machine vm-bea-dev, a cluster cluster-saa-dev, to which both the managed servers saa-dev-1 and saa-dev-2 are assigned. There are 3 applications deployed onto managed Server 1 and 1 for managed Server 2.
    Managed Server 1 is in shutdown state, and when i start the server, it gives the error specified below
    For server SAA-Dev-1, the Node Manager associated with machine vm-bea-dev is not reachable.
    All of the servers selected are currently in a state which is incompatible with this operation or are not associated with a running Node Manager. No action will be performed.
    The same for Managed Server 2 too, and this server is in Admin State, i dont know how it went into that state.
    Can somebody please help me reslove it.
    Thanks in advance

    Actually the cert is coming from your Dev machine but it is sending the Prod cert.
    What cert is used by your admin server ? It should match the host name.
    So your Dev machine is apparently using a copy of the prod cert / keystore rather than using its own DEV cert. It's not clear from your post whether this is the nodemanager using the wrong cert, or the managed server. So both should be checked.
    The managed servers need to be using a cert that matches their host name. If you have a managed server on VM-BEA-DEV, then the cert needs to be CN=VM-BEA-DEV. You can also use a load-balancer CN name in the cert if you have the cluster's HTTP values set to match.
    In your nodemanager.properties, are you explicitly accessing keystores, such as with:
    KeyStores=CustomIdentityAndJavaStandardTrust
    CustomIdentityAlias=some_alias
    CustomIdentityKeyStoreFileName=some_path_to_keystore
    CustomIdentityKeyStorePassPhrase={3DES}...
    CustomIdentityKeyStoreType=jks
    CustomIdentityPrivateKeyPassPhrase={3DES}
    In my multi-machine clusters, I have multiple certificates such as:
    admin machine1:
    has a cert for use by the admin server and NM that matches the host name ( with node manager.properties entries such as the above )
    has a 2nd cert that matches the load-balancer name for the cluster - used by the managed servers
    all other machines:
    has a cert for use by NM that matches the host name ( with node manager.properties entries such as the above )
    has a 2nd cert that matches the load-balancer name for the cluster - used by the managed servers

  • Query regarding the Node manager configuration(WLS and OAM Managed server)

    Query regarding the Node manager configuration(WLS and OAM Managed server):
    1) In the nodemanager.properties I have added the ListenAddress:myMachineName and ListenPort: 5556
    My setup : One physical Linux machine(myMachineName) has : WLS admin server, managed server(OAM 11G) and nodemanager.No clustered environment.
    2) nodemanager.log has the following exception when I start the oam_server1 using EM(Enterprise Manager11g):
    Mar 23 2012 1:39:55 AM> <SEVERE> <Fatal error in node manager server>
    java.net.BindException: Address already in use
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.AbstractPlainSocketImpl.bind(AbstractPlainSocketImpl.java:336)
    at java.net.ServerSocket.bind(ServerSocket.java:336)
    at javax.net.ssl.impl.SSLServerSocketImpl.bind(Unknown Source)
    at java.net.ServerSocket.<init>(ServerSocket.java:202)
    at javax.net.ssl.SSLServerSocket.<init>(SSLServerSocket.java:125)
    at javax.net.ssl.impl.SSLServerSocketImpl.<init>(Unknown Source)
    at javax.net.ssl.impl.SSLServerSocketFactoryImpl.createServerSocket(Unknown Source)
    Default port on which node manager listen for requests is localhost:5556.I have changed it to point to my machine. The port should be of WLS admin server or it should be the managed server port?
    3) I have started the NodeManager using the startNodeManager.sh script.
    4) The admin server port is 7001 and the oam managed server port is 14100.
    Any inputs on what might be wrong in the setup will be helpful.Thanks !

    By using netstat -anp|grep 5556 you can check which process on your machine is using the 5556 port.

  • Start managed server with the node manager???

    Hello,
    I have one admin server and one managed server for my domain. Can i Start the amdin and managed server from the node manager and not just the admin server. Currently with the install of node manager only the admin server starts and not the managed server. I need to log in to the admin server to start my managed server which is very cumbersome.
    Edited by: user9021545 on Mar 11, 2011 1:58 PM

    hi,
    In order to start Managed server from the console itself,then u have to enroll your node manager.
    Step1). Start the AdminServer...using startScript "startWebLogic.sh/cmd"
    step2)start ur node manager using stat node manager scripts,
    step3)Login to adminConsole and then see the NodeManager is Reachable or not
    If reachanble
    then run "setWLSEnv.sh/cmd".
    Then run wlst.sh file
    Step3)connect('weblogic','weblogic','t3://localhost:7001')
    Step4)nmEnroll('C:/bea103/user_projects/domains/7001_Domain','C:/bea103/wlserver_10.3/common/nodemanager')
    After this u will be able to start and stop managed server from console itself
    Note:even after dis your managed server doesnt starts then please check under <DOMAIN_ROOT>\servers\<SERVER_NAME> whether you have a folder name as security and inside it whether you have file called as boot.properties
    if no then follow these below steps
    Please create a directory "security" inside your
    <DOMAIN_ROOT>\servers\<SERVER_NAME>
    inside "<DOMAIN_ROOT>\servers\<SERVER_NAME>\security" ( Example Location:
    WLS103/user_projects/domains/Test_Domain/servers/AdminServer/security )
    directory create a file with exactly same name as "boot.properties" and with
    following 2 lines inside it:
    username=weblogic
    password=weblogic
    NOTE: Here "weblogic" is the Administrator username & password...
    if you want dont want to run Admin server from foreground then try runnin it as a background process
    This link wi; b helpful for that
    http://middlewareforum.com/weblogic/?cat=23
    any further help in this den do let me know
    Regards
    Fabian

  • Passing memory settings from the Node Manager to the Managed Server

    All,
    I am trying to start a Managed server from the Node Manager. The configuration is as follows:
    I have a domain with two managed servers(M1, M2). I could start both of them using the shell scripts without any problems. Both of the servers has custom memory settings -Xms3072m -Xmx3072m -XX:PermSize=256m
    to facilitate deployment and effective operation of managed servers (the applications being deployed are kind of large).
    Now, I am trying to start the same two servers using Admin Console:
    In the admin console: I created a Unix Machine(U1) assigned the managed servers (M1, M2) to U1. I started the Node Manager on U1.
    When I try to start a Managed Server from console, the server is starting but the memory settings (-Xms3072m -Xmx3072m -XX:PermSize=256m ) are not passed to the managed server startup, so the application deployment is failing with out of Memory errors. I tried to assign same memory settings to Node manager assuming it will pass on that configuration to the node manager without any luck.
    Any help is appreciated.
    Thanks
    Raj

    Starting Managed Server from Node Manager

  • Where do I find the "Node Manager" service?

    Can anyone tell me where to find the "Node Manager Service" In Call Manager 5.1.2 or IPCC 4.5?
    My db_CRA database in IPCC is not updating the real time ICD statistics table and Bug CSCsc09160 seems to indicate that stopping and starting the "Node Managers" may fix the issue.
    From the bug report:
    Symptom:
    Under the db_cra two tables (RtCSQsSummary and RtICDStatistics) are not updating. They stop updating concurrently with engine failovers and reboots. Only a hard reboot or a
    service failover brings them back into an active state.
    When the RtCSQsSummary and RtICDStatistics tables do update on the
    primary DB they do not update on the secondary DB and the data on them
    doesnt get refreshed.
    Conditions:
    stopping Node manager on node 1, data fails to be written to node 2. Then when we start NM back up on node 1 data is still not written to either data store
    Workaround:
    Not much as a workaround, because the solution requirs stop on both Node
    Managers and bring up node 1 first and the data starts writing to DB
    again.
    Thanks,
    Brian

    Post Author: jsanzone
    CA Forum: Authentication
    Sven,
    The reference to Session Manager is more of a concept of operations versus an entity.  The portion of code that you copied and pasted in your post is actually part of the verbiage used in an ASP script that BusinessObjects expects you to create in order for you to obtain your objective.  You can use this coding to create your own customized script or you might be able to search around on the web for a more complete solution.

  • Oracle Management Server not starting up. says node manager is down!!!

    Hi ALL,
    We are trying to startup (OMS) Oracle Management Server  but it's not starting up. it tries to connect to the node manager and says failed to connect to Node Manager as the node manager is not running.
    OPMN also not running.
    I have attached a snapshot so you can see.
    PLEASE HELP
    hi Again, below are the error reports
    2014-01-30 18:56:52,360 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>weblogic.nodemanager.NMConnectException: Connection refused. Could not connect to NodeManager. Check that it is running at omkn-ms01.int.unisa.ac.za:7403.
    2014-01-30 18:56:52,360 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at java.net.PlainSocketImpl.socketConnect(Native Method)
    2014-01-30 18:56:52,360 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
    2014-01-30 18:56:52,361 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:213)
    2014-01-30 18:56:52,361 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
    2014-01-30 18:56:52,361 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    2014-01-30 18:56:52,361 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at java.net.Socket.connect(Socket.java:529)
    2014-01-30 18:56:52,361 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at weblogic.nodemanager.client.SSLClient.createSocket(SSLClient.java:38)
    2014-01-30 18:56:52,361 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at weblogic.nodemanager.client.NMServerClient.connect(NMServerClient.java:228)
    2014-01-30 18:56:52,361 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at weblogic.nodemanager.client.NMServerClient.checkConnected(NMServerClient.java:200)
    2014-01-30 18:56:52,362 [Thread-1] INFO  commands.BaseCommand run.554 - <OUT>Attempt to connect to nm failed. Trying to start it...
    2014-01-30 18:56:52,362 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at weblogic.nodemanager.client.NMServerClient.checkConnected(NMServerClient.java:206)
    2014-01-30 18:56:52,362 [Thread-1] INFO  commands.BaseCommand run.554 - <OUT>status of node manager:
    2014-01-30 18:56:52,362 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at weblogic.nodemanager.client.NMServerClient.getVersion(NMServerClient.java:53)
    2014-01-30 18:56:52,362 [Thread-1] INFO  commands.BaseCommand run.554 - <OUT>Not connected to Node Manager
    2014-01-30 18:56:52,362 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at weblogic.management.scripting.NodeManagerService.verifyConnection(NodeManagerService.java:179)
    2014-01-30 18:56:52,363 [Thread-2] INFO  commands.BaseCommand run.554 - <ERR>   at weblogic.management.scripting.NodeManagerService.nmConnect(NodeManagerService.java:172)
    regards,
    Ambrose.

    I assumethe node manager is not running on Exadata though you have posted in the Exadata forum !
    how are you starting it. Are you using the gcstartup script within init.d ?
    Thanks

  • Could not execute command "getVersion" on the node manager

    Hi all,
    I have 2 unix machine:
    A - Admin with BankServer1 and BankWeb1 - work fine
    B - remote machine
    I did pack and unpack , after that in Weblogic I go to Environment > Machines > my_remote_machine(B) > Monitoring Tab
    The error is:
    <Error> <NodeManager> <BEA-300033> <Could not execute command "getVersion" on the node manager. Reason: "Access to domain 'Bank_Unix' for user 'hP76NCZfcy' denied".>

    Hi,
    Did u execut nmEnroll () WLST command successfully from remote box. to Enroll the NodeManager? Or did u see any WARNING/ERROR while doing this?
    Can u please double check if the Step-8 is executed successfully ...mentioned in the below link: http://weblogic-wonders.com/weblogic/2010/04/28/weblogic-clustering-in-remote-boxes/
    Thanks
    Jay SenSharma

  • Start the node manager and rerun the command

    Seeing the following in weblogic server log. When will I get this error? And how to retun node manager ?
    The node manager at host ....and port 5555 seems to be down. Start the node manager and rerun the command.

    You will get this message when the machine's NodeManager was not started.
    Take a look at the following links to see how to install and start the Node Manager:
    http://e-docs.bea.com/wls/docs81/adminguide/nodemgr.html#1150128
    http://e-docs.bea.com/wls/docs81/adminguide/confignodemgr.html#1142955

  • 351 movmnt type doesnot refers the Batch managed items with respect to P.O

    Dear SAP Gurus,
    For Stock transport order, i am using the 351 and 101 movement type.
    The batch managed items are provided in the Purcahse order and the same batch is displayed while receiving the material -101 movement ytpe  with respect to Purchase order, but while performing the Goods issue - 351 movement type , the batch is not displayed in the line item.
    Kindly help me to solve this
    Thanks in advance
    Thanks and Regards,
    R.Diwakar

    Dear SAP Guru,
    Thanks for your kind response
    yes, the batch managed material is already available in both plants that is material already extended.
    Manually the batch is entered by the receiving plant (what they required for STO), but while performing the Good issue against the  Stock Transfer order the batch is not referred or automatically flows to the batch managed items.
    in 351 movement type.
    Kindly guide me on this.
    Thanks and Regards,
    R.Diwakar

  • I am trying to change the email address associated with my existing account to free up my university email address for use in obtaining Creative Cloud.

    I am trying to change the email address associated with my existing account to free up my university email address for use in obtaining Creative Cloud.  Every time I go to the account settings of my existing account (which currently uses my university email, as I set it up years ago and had no idea it'd eventually cause problems), I enter a different email to use for that account but I continuously receive an error message saying "account changes cannot be saved."  It makes me think that it's because the email isn't verified (funny, it actually is verified since it has been the alternate email on the old account for years), but when I click the "send verification email" nothing happens (that is, no email is sent to that other email address).
    Anyway, my university is now requiring that faculty create new accounts using our university email addresses in order to register/use Creative Cloud.  Am I able to delete my old account, or can anyone help me actually change the email address associated with my old account without getting a "changes can't be saved" error?

    This is an open forum, not Adobe support... you need Adobe support to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"
    or
    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html
    -email address https://forums.adobe.com/thread/1446019
    -http://helpx.adobe.com/x-productkb/global/didn-t-receive-expected-email.html

  • Apple changed my Apple ID to the email address associated with my iTunes account. I now can no longer access my account because the old user name is no longer valid and has no password. I have been on the phone with tech support for hours trying to fix.

    Apple changed my Apple ID to the email address associated with my iTunes account. I now can no longer access my account because the old user name is no longer valid and has no password. I have been on the phone with tech support for hours trying to fix this. I can not update any of the apps associated with that user name.

    Is this itunes on the iPad or on my computer? Thank you for the reply.

  • I changed my primary email and icloud is still set for my old email. I tried deleting my icloud but it aks me for the old password associated with the old email that I don't have anymore. Any other sugestions on how to get icloud to change emails on my i

    I changed my primary email and icloud is still set for my old email. I tried deleting my icloud but it aks me for the old password associated with the old email that I don't have anymore. Any other sugestions on how to get icloud to change emails on my ios?

    I figured it out! I changed my email & password at the icloud site, then when I deleted the icloud account on my iphone - it still showed my old email but when i typed in my current password it went through. I was then able to sign back in with my current email and password. That was too easy for the amount of time I have put into this!  Glad its finally fixed.

  • When I down load books, can I read them on my iPad and iPhone? I went to open a book on my phone but I got a message that aid something about the bill already associated with an appleid. I use the same id for both devices.

    When I down load books, can I read them on my iPad and iPhone? I went to open a book on my phone but I got a message that aid something about the bill already associated with an appleid. I use the same id for both devices.

    All I can suggest is that you open that file on the MBA and save it as a new file, then see if you can open the new one on the iMac.

  • Will the1TB SATA Hard Disk Drive Kit for Mac Pro now in the Mac Store work with my Mac Pro1,1?

    Will the 1TB SATA Hard Disk Drive Kit for Mac Pro now in the Mac Store work with my Mac Pro1,1? My details of my Mac Pro is as follows:
    Model Name:          Mac Pro
      Model Identifier:          MacPro1,1
      Processor Name:          Dual-Core Intel Xeon
      Processor Speed:          2.66 GHz
      Number Of Processors:          2
      Total Number Of Cores:          4
      L2 Cache (per processor):          4 MB
      Memory:          6 GB
      Bus Speed:          1.33 GHz
      Boot ROM Version:          MP11.005C.B08
      SMC Version (system):          1.7f10
      Hardware UUID:          00000000-0000-1000-8000-0017F2059956

    It will say "green" and use less power, park its head probably, and while early units had some trouble they have evolved. Variable rpm or slower rpm also. They can be much less expenisve way to add storage. 
    WD Caviar Green
    WD Green 2TB
    For the system, 640GB is a nice size. Look for 64MB cache to help insure your drive is the latest models which will also say "6G SATA 3" which is fine.
    WD Caviar Black 1TB 6Gb
    WD Black Caviar 2TB
    larger means higher density platter, I find the 1TB and larger Blacks to run hotter/warmer and companys want drives to be able to run warmer or with less cooling. - but for really cold drives other than SSD I have found all my WD 10K VRs to have the absolute coldest temps.
    Just noticed Amazon having better prices than Newegg on 1TB - and WD and Hitachi.
    Green for your external backup, for media libraries that are not high volume access, to run cool and less power. Enterprise for system and performance.  TimeMachine sometimes makes a poor backup method with some green cases.

Maybe you are looking for