Set logging severity level for clustered servers

How can I set the logging severity level for clustered servers just once at the cluster level rather than one at a time at the server level?

I know the logging is server by server, but surely there is a way to configure the multiple servers with one change rather than one by one. We have 40 some servers in the cluster.

Similar Messages

  • How to set transaction isolation level for a method in a Local Interface

              By reference at:
              http://e-docs.bea.com/wls/docs61/ejb/reference.html#1071267,
              the value for method-intf can only be "Remote" or "Home".
              My question is--
              How to set transaction isolation level for a method inside a Local Interface or
              Local_Home Interface?
              Thanks.
              Xing
              

    I'd try 6.1SP2. I'm pretty sure this works now.
              -- Rob
              Xing wrote:
              > I tried "Local", but got an error when deploying the EJB jar, saying that only
              > "Remote" or "Home" is allowed.
              >
              > Any idea?
              >
              > Xing
              >
              > Rob Woollen <[email protected]> wrote:
              > >
              > >
              > >Use LocalHome or Local.
              > >
              > >-- Rob
              > >
              > >Xing wrote:
              > >
              > >> By reference at:
              > >> http://e-docs.bea.com/wls/docs61/ejb/reference.html#1071267,
              > >> the value for method-intf can only be "Remote" or "Home".
              > >>
              > >> My question is--
              > >>
              > >> How to set transaction isolation level for a method inside a Local
              > >Interface or
              > >> Local_Home Interface?
              > >>
              > >> Thanks.
              > >>
              > >> Xing
              > >
              > >--
              > >
              > >----------------------------------------------------------------------
              > >
              > >AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
              > >
              > >by Michael Girdley, Rob Woollen, and Sandra Emerson
              > >
              > >http://learnWebLogic.com
              > >
              > >
              > >
              > >
              > ><!doctype html public "-//w3c//dtd html 4.0 transitional//en">
              > ><html>
              > >Use LocalHome or Local.
              > ><p>-- Rob
              > ><p>Xing wrote:
              > ><blockquote TYPE=CITE>By reference at:
              > ><br>http://e-docs.bea.com/wls/docs61/ejb/reference.html#1071267,
              > ><br>the value for method-intf can only be "Remote" or "Home".
              > ><p>My question is--
              > ><p>How to set transaction isolation level for a method inside a Local
              > >Interface
              > >or
              > ><br>Local_Home Interface?
              > ><p>Thanks.
              > ><p>Xing</blockquote>
              > >
              > ><pre>--
              > >
              > >----------------------------------------------------------------------
              > >
              > >AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
              > >
              > >by Michael Girdley, Rob Woollen, and Sandra Emerson
              > >
              > >http://learnWebLogic.com</pre>
              > > </html>
              > >
              > >
              AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
              by Michael Girdley, Rob Woollen, and Sandra Emerson
              http://learnWebLogic.com
              [att1.html]
              

  • Setting logging trace level

    Hello,
    Is it possible to set the logging trace level(FATAL, ERROR, ...DEBUG) for the following jolt components :
    JRLY, JRAD, JSL, JSH ? If yes how ? If no how can we debbug this component ? or make the logs more talkative ?
    Thanks in advance for your answers
    pledreau

    There aren't any configurable debug levels available to customers in Jolt.
    Your best bet for debugging this component is to turn on the TMTRACE
    facility. Depending on which ATMI APIs your application is using, this will
    produce few or no additional userlog messages from the Jolt processes
    themselves, but it will produce a significant amount of additional userlog
    information from the application servers that are called by Jolt, which may
    be of help in debugging.
    Ed
    <First Last> wrote in message news:[email protected]..
    Hello,
    Is it possible to set the logging trace level(FATAL, ERROR, ...DEBUG) for
    the following jolt components :
    JRLY, JRAD, JSL, JSH ? If yes how ? If no how can we debbug this component
    ? or make the logs more talkative ?
    Thanks in advance for your answers
    pledreau

  • Hi, with mix16 pro app, can anyone tell me when you set different audio levels for different tracks, does the app remember the level set the next time you use it?  Or does it default to the original setting when you power down after a show?  Thanks!

    Hi
    I use backing tracks for some songs with a live band and we are having some issues with levels.  Some are higher than others etc.  I use i pad to run the tracks.  I am looking for an app that where I can control the levels better.  Ideally, an app where I can set the level of each track to a desired level and leave it at that level for good.  Mix16 Pro  seems to do that but I wonder does it save the setting as I do not want to set the levels every time I use it.
    Thanks

    Hi
    I use backing tracks for some songs with a live band and we are having some issues with levels.  Some are higher than others etc.  I use i pad to run the tracks.  I am looking for an app that where I can control the levels better.  Ideally, an app where I can set the level of each track to a desired level and leave it at that level for good.  Mix16 Pro  seems to do that but I wonder does it save the setting as I do not want to set the levels every time I use it.
    Thanks

  • Setting transaction isolation level for jDriver Oracle/XA

    edocs (http://e-docs.bea.com/wls/docs70/oracle/trxjdbcx.html#1080746) states that,
    if using jDriver for Oracle/XA you can not set the transaction isolation level
    for a
    transaction and that 'Transactions use the transaction isolation level set on
    the connection
    or the default transaction isolation level for the database'. Does this mean that
    you shouldn't try to set it programatically (fair enough) or that you can't set
    it in the weblogic deployment descriptor either? Also anybody got any idea what
    the default is likely to be if you are using
    an Oracle 9iR2 database?

    Ian,
    The default for Oracle (any version) is ReadCommitted. The only other
    isolation level Oracle supports is Serializable but it's implemented in
    such a way that you will be allowed to continue until commit time and
    only then you might get an exception stating the the access for that
    transaction could not be serialized.
    I don't know for the jDriver but if you use the Oracle Thin XA driver
    even if you set the isolation level in your descriptor you will get an
    exception from Weblogic. It is a Weblogic bug and you can contact
    [email protected] to get a patch.
    Regards,
    Dejan
    IJ wrote:
    edocs (http://e-docs.bea.com/wls/docs70/oracle/trxjdbcx.html#1080746) states that,
    if using jDriver for Oracle/XA you can not set the transaction isolation level
    for a
    transaction and that 'Transactions use the transaction isolation level set on
    the connection
    or the default transaction isolation level for the database'. Does this mean that
    you shouldn't try to set it programatically (fair enough) or that you can't set
    it in the weblogic deployment descriptor either? Also anybody got any idea what
    the default is likely to be if you are using
    an Oracle 9iR2 database?

  • Setting default zoom level for creating bookmarks

    I am creating a PDF file in a couple of steps.  The main text is created from Word, which gives me bookmarks automatically set to "Inherit Zoom."  I also create subsets of tables and figures by "combining files in Acrobat" from Windows Explorer.  That step creates bookmarks automatically that are set to "Fit Width."  I then add the pages from the tables and figures into the PDF created from the Word document.  The bookmarks come in the proper location, but the zoom level stays "Fit Width."  I'd like it to be either "Inherit Zoom" or "Fit Page."  Is there a way to set the default zoom for bookmark creation so I don't have to manually change each bookmark?

    It seems like the DVT by default zooms to fit the available real estate. But is it possible to set a fixed zoom level (say 75%) even if the node does have 100% zoom level. We would like to show the 100% zoom level only on hover to the node. But by default, wanted to to set the viewer to always show 75% or 50% zoom level.

  • Setting default volume level for Java Desktop

    Hello,
    I am running Sol 10 11/06 for sparc. How do I permanently set the default volume level for the Java desktop? If I change the volume manually and "save settings" on logoff, the saved setting is not saved after a reboot, after which I have to set it again.
    Thank you......

    Annoying, isn't it?
    Unfortunately the only thing you can do is lower your system volume before opening those pages. The volume could be controlled by the Web page author but most are clueless.

  • Set Windows Integrity Level for Application at startup

    Hi,
    Yesterday I found a problem in my application that it had not have the same integrity level as Outlook. Therefore someone from microsoft adviced me to look at the integrity level and make them both the same. I managed to find a CommandPrompt command for
    setting the integrity level, but what I really want is setting the integrity level at startup of my application.
    How can I set the integrity level of my application to the desired level using C#?
    Best regards,
    Jouke

    Hello Jouke,
    I am not a Microsoft employee, just a regular developer as you are.
    Anyway, the forum is for Outlook related dev questions. I'd suggest asking common C# programming questions on the Visual C# forum instead.
    I believe you can use the
    /runas command line argument.

  • Setting an Authentication Level for a WS using Deployment Descriptor Files

    Hi
    I'm developing WS with authentication level BASIC but I have some problem deploying it.
    I read from https://cw.sdn.sap.com/cw/docs/DOC-106319  how to setting authentication level using annotation, but I cannot use annotation because my WS are cross-platform (they can be executed on SAP NetWeaver AS, JBoss, IBM WebSphere).
    My WS is based on a stateless EJB Session 2.1.
    My ejb-jar contains security-role-ref.
    <?xml version="1.0" encoding="UTF-8"?>
    <ejb-jar id="ejb-jar_ID" version="2.1" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd">
         <enterprise-beans>
              <session id="AsyncOrd10">
                   <description>AsyncOrd10</description>
                   <ejb-name>AsyncOrd10</ejb-name>
                   <local-home>com.dat.now.ws.ord.AsyncOrd10Home</local-home>
                   <local>com.dat.now.ws.ord.AsyncOrd10</local>
                   <service-endpoint>com.dat.now.ws.ord.AsyncOrd10WS</service-endpoint>
                   <ejb-class>com.dat.now.ws.ord.AsyncOrd10EJB</ejb-class>
                   <session-type>Stateless</session-type>
                   <transaction-type>Container</transaction-type>
                   <resource-ref id="AsyncOrd10Ref">
                        <description>Reference to the DataSource used by AsyncOrd10</description>
                        <res-ref-name>jdbc/AsyncOrd10</res-ref-name>
                        <res-type>javax.sql.DataSource</res-type>
                        <res-auth>Container</res-auth>
                   </resource-ref>
                   <security-role-ref id="SecurityRoleRef_AsyncOrd10">
                        <role-name>everyone</role-name>
                        <role-link>everyone</role-link>
                   </security-role-ref>
              </session>
         </enterprise-beans>
         <assembly-descriptor id="assembly-descriptor_ID">
              <security-role id="SecurityRole_everyone">
                   <role-name>everyone</role-name>
              </security-role>
              <security-role id="SecurityRole_sysadm">
                   <role-name>sysadm</role-name>
              </security-role>
              <method-permission id="MethodPermission_AsyncOrd10">
                   <role-name>everyone</role-name>
                   <method id="MethodElement_AsyncOrd10">
                        <ejb-name>AsyncOrd10</ejb-name>
                        <method-name>*</method-name>
                   </method>
              </method-permission>
              <container-transaction id="container-transaction_AsyncOrd10">
                   <method id="AsyncOrd10_methods">
                        <ejb-name>AsyncOrd10</ejb-name>
                        <method-name>*</method-name>
                   </method>
                   <trans-attribute>Required</trans-attribute>
              </container-transaction>
         </assembly-descriptor>
    </ejb-jar>

    for JBoss I can set in the jboss.xml the auth-method (under the port-component)
    <?xml version="1.0" encoding="UTF-8"?>
    <jboss>
         <security-domain>java:/jaas/absolut</security-domain>
         <enterprise-beans>
              <session>
                   <ejb-name>AsyncOrd10</ejb-name>
                   <local-jndi-name>com.dat.now.ws.ord.AsyncOrd10</local-jndi-name>
                   <port-component>
                   <port-component-name>AsyncOrd10WSPort</port-component-name>
                        <port-component-uri>AsyncOrd10</port-component-uri>
                        <auth-method>BASIC</auth-method>
                   </port-component>
                   <resource-ref>
                        <res-ref-name>jdbc/AsyncOrd10</res-ref-name>
                        <res-type>javax.sql.DataSource</res-type>
                        <jndi-name>java:/now</jndi-name>
                   </resource-ref>
              </session>
         </enterprise-beans>
    </jboss>
    For IBM WebSphere I should use an additional step in the deploy
    Maybe I missing something in the ejb-j2ee-engine.xml ?
    this is it :
    <?xml version="1.0" encoding="UTF-8"?>
    <ejb-j2ee-engine>
         <enterprise-beans>
              <enterprise-bean>
                   <ejb-name>AsyncOrd10</ejb-name>
                   <jndi-name>com.dat.now.ws.ord.AsyncOrd10</jndi-name>
                   <resource-ref>
                        <res-ref-name>jdbc/AsyncOrd10</res-ref-name>
                        <res-link>now</res-link>
                   </resource-ref>
              </enterprise-bean>
         </enterprise-beans>
    <security-permission>
    <security-role-map>
    <role-name>everyone</role-name>
    <server-role-name>all</server-role-name>
    </security-role-map>
    <security-role-map>
    <role-name>sysadm</role-name>
    <server-role-name>administrators</server-role-name>
    </security-role-map>
    </security-permission>
    </ejb-j2ee-engine>
    Thanks

  • Set logging to NO for all index in primary DB

    Hi,
    can i set the logging option to NO for all index in primary DB (versus standby DB).
    Because the execute plan of queries changes with this option and the time it's very long for geats tables if the option logging it's YES.
    Regards.

    Hi,
    personally I have never seen that execution plan changes if objects in nologging mode. Could you show sql statements that have changed execution plans due to nologging clause.
    Thanks,
    Andrey

  • Best Way to Set up new Macs for Windows Servers

    I am trying to get 5 new iMacs set up to my schools servers running Windows Server 2003. No one else has time to set these lovely machines up and I have no expereince doing any sort of networking. I need to get the machines to login to student accounts and save all the prefence changes and such there and not on the computers. According to my boss this was where they were having problems when trying to set them up. So if anyone has any good tutorials or such they could pass on to me, it would be greatly appreciated.

    The problem with all these instructions that i found when setting up our network is that they all rely on you having a Win2k and a OSX server. This is not the case i think for many of us in small/medium size organizations. We have OSX clients, but not a server nor a spare OSX workstation to make a server out of. Now im sure these various documents can be modified to fit this client only situation but i have been unable to find anyone that has done so yet. I intend to do it myself at soem point but havent found the time yet. We run a mixed network at the office with win2k3 domain but we dont have out mac clients bound to it yet.
    Having said that he best peice of documentation Ive found has been over at bombich.com:
    http://www.bombich.com/mactips/activedir.html
    another good site: http://www.afp548.com
    Good luck my friend!

  • How to specifies global severity level for a Trap

    This field shows the severity or the intensity of the trap. It could be 0-All, 1-Critical, 2-Major, 3-Minor, 4-warning, 5-Clear, and 6-Info.
    But all trap are receved in my Trap viewer is same and it is Clear(5)
    Is there any way i can change this trap level ,to critical , or major etc ...
    Thank you,
    Arunmon

    This field shows the severity or the intensity of the trap. It could be 0-All, 1-Critical, 2-Major, 3-Minor, 4-warning, 5-Clear, and 6-Info.
    But all trap are receved in my Trap viewer is same and it is Clear(5)
    Is there any way i can change this trap level ,to critical , or major etc ...
    Thank you,
    Arunmon

  • Datagrid: Can I set a tranparency level for column background color?

    Hi all,
    I have a datagrid with background colors set using triggers. This works. I would like to set a column background color but I don't want to make the color solid because it will block the row color. Is there a way to set the column background color transparency
    to 50% (or less) so that I can still see (or blend) with the row background color? I can set the "background" property of the column to a value of "transparent" but this makes no sense without a color.
    Thanks
    <DataGrid.RowStyle>
    <Style TargetType="DataGridRow">
    <Style.Triggers>
    <DataTrigger Binding="{Binding col_oPutorCall}" Value="call">
    <Setter Property="Background" Value="Cornsilk"/>
    </DataTrigger>
    <DataTrigger Binding="{Binding col_oPutorCall}" Value="put">
    <Setter Property="Background" Value="BlanchedAlmond"/>
    </DataTrigger>
    <DataTrigger Binding="{Binding col_rowColor}" Value="false">
    <Setter Property="Background" Value="LightGreen"/>
    </DataTrigger>
    </Style.Triggers>
    </Style>
    </DataGrid.RowStyle>
    <DataGridTextColumn Binding="{Binding col_oBid, StringFormat=F2}" FontFamily="Arial" FontWeight="Bold" FontSize="12" Header="oB" >
    <DataGridTextColumn.CellStyle>
    <Style TargetType="DataGridCell">
    <Setter Property="Background" Value= "Transparent" />
    <Setter Property="Background" Value= "AliceBlue" />
    </Style>
    </DataGridTextColumn.CellStyle>
    </DataGridTextColumn>

    Background is a brush.
    You can define a brush with an opacity in a resourcedictionary merged in app.xaml or in your window.resources ( etc ).
    <Grid.Resources>
    <SolidColorBrush x:Key="TransparentIshBrush" Color="Red" Opacity=".3" />
    </Grid.Resources>
    I should think you can then do:
    <DataGridTextColumn Binding="{Binding col_oBid, StringFormat=F2}" FontFamily="Arial" FontWeight="Bold" FontSize="12" Header="oB" >
    <DataGridTextColumn.CellStyle>
    <Style TargetType="DataGridCell">
    <Setter Property="Background" Value="{StaticResource TransparentIshBrush}" />
    </Style>
    </DataGridTextColumn.CellStyle>
    </DataGridTextColumn>
    The problem with your former piece of code is that setting an opacity on a datagridcell gets everything in it. You would have to do
    <Setter Property="(BackGround.Opacity)"
    And I'm rather doubtful that would work anyhow.
    Please don't forget to upvote posts which you like and mark those which answer your question.
    My latest Technet article - Dynamic XAML

  • Stdout severity level

    Hi all,
    I am using weblogic application server version 923 with two managed nodes. One of the managed node has an different team's ear that our application uses. The managed node's logging severity level for the stdout is set to NOTICE and there is no filtering enabled and uses JDK logging.
    The ear does not contain a log4j.xml. But the the server node's .out file shows the DEBUG and INFO messages from the java classes contained in the ear.
    I assumed that if the severity level in admin console is set to NOTICE, the DEBUG/INFO log4j messages of the application will be filtered out.
    The other issue, is that there is no log4j.xml on the entire linux box on which the application server is running. I confirmed that using find command.
    Also the admin node's logging severity level /filter are disabled; I wonder if this is causing an issue?
    We need to install this ear in production weblogic enviornment thus wondering as how to avoid application related DEBUG/INFO messages in the .out file?
    Any help is highly appreciated.
    Thanks in advance.
    Edited by: user11308978 on Sep 8, 2010 3:59 PM
    Edited by: user11308978 on Sep 8, 2010 4:01 PM

    Yes, you should - although I've never tried it personally with a clustered WLS. I'd suggest that you try one of the WLS forums - you'll probably get a better response.

  • Java.util.logging - Problem with setting different Levels for each Handler

    Hello all,
    I am having issues setting up the java.util.logging system to use multiple handlers.
    I will paste the relevant code below, but basically I have 3 Handlers. One is a custom handler that opens a JOptionPane dialog with the specified error, the others are ConsoleHandler and FileHandler. I want Console and File to display ALL levels, and I want the custom handler to only display SEVERE levels.
    As it is now, all log levels are being displayed in the JOptionPane, and the Console is displaying duplicates.
    Here is the code that sets up the logger:
    logger = Logger.getLogger("lib.srr.applet");
    // I have tried both with and without the following statement          
    logger.setLevel(Level.ALL);
    // Log to file for all levels FINER and up
    FileHandler fh = new FileHandler("mylog.log");
    fh.setFormatter(new SimpleFormatter());
    fh.setLevel(Level.FINER);
    // Log to console for all levels FINER and up
    ConsoleHandler ch = new ConsoleHandler();
    ch.setLevel(Level.FINER);
    // Log SEVERE levels to the User, through a JOptionPane message dialog
    SRRUserAlertHandler uah = new SRRUserAlertHandler();
    uah.setLevel(Level.SEVERE);
    uah.setFormatter(new SRRUserAlertFormatter());
    // Add handlers
    logger.addHandler(fh);
    logger.addHandler(ch);
    logger.addHandler(uah);
    logger.info(fh.getLevel().toString() + " -- " + ch.getLevel().toString() + " -- " + uah.getLevel().toString());
    logger.info("Logger Initialized.");Both of those logger.info() calls displays to the SRRUserAlertHandler, despite the level being set to SEVERE.
    The getLevel calls displays the proper levels: "FINER -- FINER -- SEVERE"
    When I start up the applet, I get the following in the console:
    Apr 28, 2009 12:01:34 PM lib.srr.applet.SRR initLogger
    INFO: FINER -- FINER -- SEVERE
    Apr 28, 2009 12:01:34 PM lib.srr.applet.SRR initLogger
    INFO: FINER -- FINER -- SEVERE
    Apr 28, 2009 12:01:40 PM lib.srr.applet.SRR initLogger
    INFO: Logger Initialized.
    Apr 28, 2009 12:01:40 PM lib.srr.applet.SRR initLogger
    INFO: Logger Initialized.
    Apr 28, 2009 12:01:41 PM lib.srr.applet.SRR init
    INFO: Preparing Helper Files.
    Apr 28, 2009 12:01:41 PM lib.srr.applet.SRR init
    INFO: Preparing Helper Files.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Getting PC Name.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Getting PC Name.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Finished Initialization.
    Apr 28, 2009 12:01:42 PM lib.srr.applet.SRR init
    INFO: Finished Initialization.Notice they all display twice. Each of those are also being displayed to the user through the JOptionPane dialogs.
    Any ideas how I can properly set this up to send ONLY SEVERE to the user, and FINER and up to the File/Console?
    Thanks!
    Edit:
    Just in case, here is the code for my SRRUserAlertHandler:
    public class SRRUserAlertHandler extends Handler {
         public void close() throws SecurityException {
         public void flush() {
         public void publish(LogRecord arg0) {
              JOptionPane.showMessageDialog(null, arg0.getMessage());
    }Edited by: compbry15 on Apr 28, 2009 9:44 AM

    For now I have fixed the issue of setLevel not working by making a Filter class:
    public class SRRUserAlertFilter implements Filter {
         public boolean isLoggable(LogRecord arg0) {
              if (arg0.getLevel().intValue() >= Level.WARNING.intValue()) {
                   System.err.println(arg0.getLevel().intValue() + " -- " + Level.WARNING.intValue());
                   return true;
              return false;
    }My new SRRUserAlertHandler goes like this now:
    public class SRRUserAlertHandler extends Handler {
         public void close() throws SecurityException {
         public void flush() {
         public void publish(LogRecord arg0) {
              Filter theFilter = this.getFilter();
              if (theFilter.isLoggable(arg0))
                   JOptionPane.showMessageDialog(null, arg0.getMessage());
    }This is ugly as sin .. but I cannot be required to change an external config file when this is going in an applet.
    After much searching around, this logging api is quite annoying at times. I have seen numerous other people run into problems with it not logging specific levels, or logging too many levels, etc. A developer should be able to complete configure the system without having to modify external config files.
    Does anyone else have another solution?

Maybe you are looking for

  • How to use Hotmail account to sign in to Samsung T...

    Before I could respond to this forum I was asked to sign in.  I was going to post something fairly snarky.  Then I was asked to create a Skype Name different than my hotmail account.  So I created one.  Hopefully this will answer MY question and that

  • Error 4261 - failed disc burn

    DIAGNOSTICS Microsoft Windows XP Home Edition Service Pack 2 (Build 2600) Sony Corporation VGN-S360 iTunes 7.2.0.35 CD Driver 2.0.6.1 CD Driver DLL 2.0.6.2 LowerFilters: PxHelp20 (2.0.0.0), UpperFilters: GEARAspiWDM (2.0.6.1), Current user is an admi

  • Trex install on content server

    is it possible to search with trex in sap content server? At the moment content server and trex are installed on the same server. R/3 is using the content server. And i successfull made an rfc connection to trex. What are the next steps for trex to s

  • Can i embed openfile dialogbox in flex stage? (dont want to open it separatly)

    i want fileopen dialogbox (myFileReference.browse(allTypes); ) embedded i flex app , so that i may be able to browse files without opening and closing file open dialogbox again and again. any idea?

  • Installing new hard drive in older macbook pro

    I have an aluminum Macbook Pro 17" with Intel Core Duo. This is the processor before they went totally to the Core 2 Duo. At the time I bought it the largest hard drive I could get was what I have, which is their 120 Gb internal drive. Is it possible