How to turn SSI on in Server 7 or 8?

Hello
Im trying to find out how to turn Server Side Includes on in the Server 7 or Server 8 . Cannot find any reference in the documentation.
Please help.

The admin guide has it. You have to get certificate from a CA or build your own CA and get it first. For version 7 you can import the certificate on admin console and go to http listener to enable the SSL. For version 8 you have to use keytool to put your certificate into the keystores. Then set up http listener for SSL connection.
Then on your application, set up the security constraint. Deploy it. Job is done.

Similar Messages

  • How to install SSIS on SQL Server Developer

    I have SQL Server Developer.  I know I can add in SSIS.  Can you tell me the steps to install SSIS on my machine?
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

    Hi ryguy72,
    Based on my research, in the version of SQL Server 2014, SSDT BI is no longer included in setup. If we require Integration Services design-time features, we must also install SQL Server Data Tools (SSDT). Installs Microsoft SQL Server Data Tools Business
    Intelligence project templates for Analysis Services, Integration Services, and Reporting Services that support Visual Studio 2012.
    Please download and install Microsoft SQL Server Data Tools - Business Intelligence for Visual Studio 2012 from there:
    http://www.microsoft.com/en-in/download/details.aspx?id=36843
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How to turn on a WSA S170 built in FTP server ?

    Dear support forum members,
    I configured Cisco WSA S170 and forgot to turn on the WSA built in FTP server.
    I found it when I tried to access WSA logs from Web GUI. May be it is already turned on by default, but  WSA blocks access to it.
    Could you advise me, how to turn FTP server on or allow access to it from Web GUI or CLI.
    I could not find any information about it in documentation.
    Thanks in advance!
    Best regards,
    Alexander.
    P.S. Sorry for my English

    Hi,
    Try the "ifconfig" command. When you select the interface and click on edit, it should ask you:
    Do you want to enable FTP on this interface? [Y]> 
    Do you want to enable SSH on this interface? [Y]>
    Which port do you want to use for SSH?
    [22]>...
    Regards,
    Kush

  • How do you turn your outgoing mail server to online vs offline?

    How do you turn your outgoing mail server to online vs offline

    I had this problem too but I fixed it today. I have been unable to send emails with two of my 4 accounts.
    Go to the mail menu preferences.
    Click on account in question.
    Select the outgoing SMTP mail server (the one offline), this has a drop down list, click on the edit server list.
    Click on the advanced button.
    Make sure use default port is checked.
    Make sure SSL is unchecked (unless your provider requires it, mine does not work with it checked).
    Have authentication set to password.
    User name should be your email address for that account.
    Make sure correct password is entered (for some strange reason my password box was blank on this account).
    Push the ok button.
    For me the SSL box was checked and the password was missing. This is strange to me considering I have unchecked the SSL Box on the mail preference advance page. Also, I went through the complete set up account when I first created the account, why was my outgoing server password box empty?
    I hope this helps.
    Here is a link to some visual aids with the steps from my ISP
    http://support.knology.net/content/smtpauth/smtpredirect.cfm

  • How to turn off / disable a Coldfusion Server?

    I have a Coldfusion MX 7 server running on a test machine.
    This server is just for testing applications on the local machine
    (of which I am the administrator of). At times I also use this same
    machine to do 3D Rendering. When the Coldfusion server is running
    it hogs a lot of precious RAM unecessarily. I count 7 services
    running in the task manager related to the Coldfusion server.
    How do I disable or turn off the Coldfusion server upon
    bootup? Either set something so that it will not run at all upon
    bootup, or be able to somehow shut the CF server down, so that no
    services for it are running after booting up. In other words
    sometimes I would like the CF server to run, other times I don't
    want it running AT ALL. How can I do this? After searching the CF
    docs I have come up with no answer..
    Any help would be most appreciated!

    Coldfusion runs as a service. You can manage them by going to
    start > Administrative tools > Service (or by going to start
    > run > services.msc). This will list all of the services
    running on the system. There are several services that may be
    running, depending on what type of installation you did. You can
    either stop or disable these (by stopping, the service will start
    again the next time you reboot; disabling prevents them from
    starting on startup - this may still require you to stop the
    service... if you disable you will have to re-enable the next time
    you want to use CF).
    Some of the services you may have to stop:
    Macromedia CFMX
    Macromedia JRun Cfusion Server
    ColdFusion MX 7 ODBC Agent
    ColdFusion MX 7 ODBC Server
    ColdFusion MX 7 Search Server

  • How to pass values to SQL server Agent Job which internally calls SSIS

    Hi,
    I have a requirement where i need to call remotely SSIS package from ASPX. After following MSDN form, I have creaed one SQL server agent job and calling that job from ASPX. I am ablt call SQL server agent job from ASPX. Only issue i am facing is: I need
    to pass 2 variables from ASPX to SQL Agent job so that from Job i can map the same to SSIS Package.
    I am using system SP (sp_start_job) for calling SQL server agent job as mentioned in MSDN forum.
    below is the code , which i am using to call SQL serve agent job.
    Code:
    SqlConnection
    jobConnection;
    SqlCommand jobCommand;
    SqlParameter jobReturnValue;
    SqlParameter jobParameter;
    int jobResult;
                    jobConnection =
    new
    SqlConnection("Server=ServerName;Initial
    Catalog=msdb;Integrated Security=SSPI;user id=username;Password=password");
                    jobCommand =
    new
    SqlCommand("sp_start_job",
    jobConnection);
                    jobCommand.CommandType =
    CommandType.StoredProcedure;
                    jobReturnValue =
    new
    SqlParameter("@RETURN_VALUE",
    SqlDbType.Int);
                    jobReturnValue.Direction =
    ParameterDirection.ReturnValue;
                    jobCommand.Parameters.Add(jobReturnValue);
                    jobParameter =
    new
    SqlParameter("@job_name",
    SqlDbType.VarChar);
                    jobParameter.Direction =
    ParameterDirection.Input;
                    jobCommand.Parameters.Add(jobParameter);
                    jobParameter.Value =
    "ImportCMTData";
                    jobConnection.Open();
                    jobCommand.ExecuteNonQuery();
                    jobResult = (
    Int32)jobCommand.Parameters["@RETURN_VALUE"].Value;
                    jobConnection.Close();
    switch (jobResult)
    case 0:
    Console.WriteLine("SQL
    Server Agent job, RunSISSPackage, started successfully.");
    break;
    default:
    Console.WriteLine("SQL
    Server Agent job, RunSISSPackage, failed to start.");
    break;
    Console.Read();
    Thanks
    Pankaj

    "3-4 concurrent users are calling the SSIS package from ASPX page" this is not a proper design
    If the data is being ingested than it is likely that this concurrency will lead to one of the packages die
    What you shell do is to just queue the data ingress/processing.
    In general, again, packages should not be called from ASP web pages, SSIS is ETL-server side technology there is nothing signalling back to the user whether it was successful. The proper way is to write a REST service or alike. 
    Arthur
    MyBlog
    Twitter

  • How do i change primary smtp server?

    How do I change my primary smtp server? I can delete all the old accounts I no longer use as email accounts, but the primary smtp server for the accounts I still use is still set as that for the old server. Not only is there nowhere to delete it, I can't even change it! There should at least be a button to take you to that page in the iOS6 settings somewhere easy to find, like IN the same place as where it is listed.
    Very annoying.

    What did not work? You could not add an additional SMTP server? It does not matter what the primary is listed as....turn it off. Then turn on the additional server you added.
    Better yet remove your .mac account and add it back as .me account.
    .Mac to MobileMe transition FAQ
    http://support.apple.com/kb/HT1932
    Message was edited by: iphone3Gguy

  • How to Install SSIS COM Component on Client side

    Hi,
    I am new to BPC.
    I can't install SSIS COM Component on Client side.
    and i guess,  it lead BPC Excel , Data Manager is not working.
    Because all the user are local user on server side, no domain
    I have run OSoftSetup.exe,  but the result is
    Error (Login failed for user ". The user is not associated with a trusted SQL Server connection.)
    i have tried to change the OutlookSoft.config in OSoftSSIS_Client\Bin Folder
    and the config doesn't take any effect.
    How to How to Install SSIS COM Component on Client side?
    thx
    It is client side PC_MS\Logging\Log
    #ERROR#CustomXMLClt##EPM-BPC-MS##e17c2022-c7d4-4a0b-8515-b719441e3dbf###XMLParser : GetTagValue#hostname
    user########Plain##[LOG ID:22]System.NullReferenceException: Object reference not set to an instance of an object.
       at OSoft.Consumers.Common.CustomXML50.XMLParser.GetAttributeValue(String strKeyValue, String strAttKeyValue, String strSubKeyValue)#
    thx
    John

    But the problem is...in client side
    When opening Office 2007 Excel -> eTool -> Data Manager
    There have no option showed.
    and in C:\Documents and Settings\<user>\My Documents\PC_MS\Logging\Log
    it has following error.
    2010 08 21 17:15:35:875#+8:00#ERROR#CustomXMLClt##EPM-BPC-MS##51cea66a-13cd-49fc-afdd-7b492566bd12###XMLParser : GetTagValue#<HOSTNAME>
    BPCADM########Plain##[LOG ID:346]System.NullReferenceException: Object reference not set to an instance of an object.
       at OSoft.Consumers.Common.CustomXML50.XMLParser.GetAttributeValue(String strKeyValue, String strAttKeyValue, String strSubKeyValue)#
    2010 08 21 17:15:35:875#+8:00#ERROR#DMClientTools##EPM-BPC-MS##7aec1fbe-5fda-4c91-9c4a-1eec5e59911b###DMTools::ErrCheck#<HOSTNAME>
    BPCADM########Plain##[LOG ID:347]System.Exception: 91: Object reference not set to an instance of an object.
       at OSoft.Consumers.DataMgr.DMClientTools50.DMTools.ErrCheck(String strRtn)#
    2010 08 21 17:15:35:875#+8:00#ERROR#DMClientTools##EPM-BPC-MS##48f5a612-a046-4ef9-a56c-db565ef489d2###DMTools::GetServerInfo#<HOSTNAME>
    BPCADM########Plain##[LOG ID:348]System.Exception: 91: Object reference not set to an instance of an object.
       at OSoft.Consumers.DataMgr.DMClientTools50.DMTools.ErrCheck(String strRtn)
       at OSoft.Consumers.DataMgr.DMClientTools50.DMTools.GetServerInfo(String strContext, String strFilter, String strSecurity)#
    2010 08 21 17:15:35:890#+8:00#ERROR#DMConsole##EPM-BPC-MS##af7f7343-1cb2-4802-a667-2adbb1b8e2fd###basClientTools::ChangeClientSiteList#<HOSTNAME>
    BPCADM########Plain##[LOG ID:349]Subscript out of range#

  • How to Execute SSIS package through MySQL Procedure

    Hi Everyone,
    How to Execute SSIS package from MySQL Stored Procedure.
    Please share your suggestions on this.
    Regards,
    Vaishu

    I am not sure whether you have SSIS license version installed in the system where MYSQL is there. In order to run SSIS package we need to have DTEXEC executable file and it comes with SSIS license version.
    An SSIS package can be executed from command prompt as,
    C:\>dtexec /f E:\package.dtsx
    I am not expert in MYSQL however in TSQL we can run dos command or scripting language such as vbscript.
    Similarly you need to check in MYSQL. This is MSSQL Server forum.
    Refer
    http://www.ehow.com/how_8789576_call-ssis-package-vbscript.html
    http://www.mssqltips.com/sqlservertip/1775/different-ways-to-execute-a-sql-server-ssis-package/
    Regards, RSingh

  • How start XA log in Oracle Server 8.1.7

    I'd like to activate Oracle Server XA log while using Oracle 8.1.7 oci
    driver for
    connecting to a 8.1.7 Server. The JDBC log is already active.
    Oracle Documentation states that you must add in the openinfo string of
    the TM
    de following info: DbgFl=15LogDir=/...
    Where can I put that info so weblogic instruct Server to log xa trans?
    I've seen that jdriver config has an openinfo field and it does the job,
    but I want to
    get it with Oracle driver.
    Thanks,
    Josep

    Hi Josep,
    Could you write a small standalone program that can
    activate XA log, and than post it here in the newsgroup?
    We will try to come up with ideas how to turn it on for
    WebLogic.
    Regards,
    Slava Imeshev
    "Josep Blazquez" <[email protected]> wrote in message
    news:[email protected]..
    I'd like to activate Oracle Server XA log while using Oracle 8.1.7 oci
    driver for
    connecting to a 8.1.7 Server. The JDBC log is already active.
    Oracle Documentation states that you must add in the openinfo string of
    the TM
    de following info: DbgFl=15LogDir=/...
    Where can I put that info so weblogic instruct Server to log xa trans?
    I've seen that jdriver config has an openinfo field and it does the job,
    but I want to
    get it with Oracle driver.
    Thanks,
    Josep

  • How to turn on trackpad without mouse

    I have disabled my trackpad and use a mouse to operate the computer. I have left my mouse behind and now cannot use the computer because the trackpad is off. Does anyone know how to turn the trackpad back on without the mouse?
    Crucially I can get into system prefs and then get to accessibility but I cannot uncheck the box "ignore built in trackpad...etc" .
    Can anyone help? This is quite urgent.
    Thanks
    Will

    There's no easy way, but if it's such a large email that it takes a while to send, if you go into Airplane Mode (Settings, and it's the top option) as soon as you power on, you should be fine. Don't forget, the phone has to connect to the 3G network, Mail has to initialise, find the mail server, handshake and figure out what needs to be done before any mail gets sent.
    Alternatively, if you want zero risk, find a location with no 3G signal (subway/underground, elevator/lift etc) and switch on the phone there

  • How to turn a stored procedure with a parameter into table function?

    Could someone please let me know how to turn the SP below into table-value function? I want to be able to run this function by using SELECT statements with the parameter. Thanks
    CREATE
    PROCEDURE
    [dbo].[Transformation](@year
    varchar(4))
    AS
    BEGIN
    Declare@Q1
    Varchar(100)=
    '['+@year+'Q1'+']'
    Declare@Q2
    Varchar(100)=
    '['+@year+'Q2'+']'
    Declare@Q3
    Varchar(100)=
    '['+@year+'Q3'+']'
    Declare@Q4
    Varchar(100)=
    '['+@year+'Q4'+']'
    Declare@StrQuery
    Varchar(1000)
    Set@StrQuery
    = 'Select Date, Job, [Cost Elements],Units,
    '+@Q1+'+'+'+'+@Q2+'+'+'+'+@Q3+'+'+'+'+@Q4+'
    as [Amounts], ''Update'' as [Description]  From Export with (nolock)'
    --Print @StrQuery
    Exec(@StrQuery)
    END

    You cannot use dynamic SQL in user-defined functions.
    Work around (not an ideal solution, it has problems): OPENQUERY.
    Blog:  http://www.sqlusa.com/bestpractices2005/selectfromsproc/
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • How to turn a database status from "in recovery" to "online"?

    How to turn a database status from "in recovery" to "online"?
    We were trying to turn a datase to offline status using management studio - the operation was closed before it could reach the end.

    Hi Brian,
    Thanks for your feedback;
    I have completed the following actions to solve the issue:
    1. Start SQL Server in single user mode.
    2. Check database status: there i noticed that it was normal
    3. Restart SQL Server in multi-user mode
    4. Check database status: normal
    5. Check my data: ok
    Thank you again
    Lulu01
    You should have wait for an while or atleaset you need to check in the sql errorlog, what phases it is or if any issues persists that shows in the errorlog messages.
    also you would have been used sys.databases, to seewhat's the value for state_desc for your database.
    Thanks, Rama Udaya.K (http://rama38udaya.wordpress.com) ---------------------------------------- Please remember to mark the replies as answers if they help and UN-mark them if they provide no help,Vote if they gives you information.

  • How to turn off service led in a SF 6900

    Hello
    I have a SF6900 (the big server) and the service yellow light on top of the rack is on.
    I can see it on with showplatform on the SC. There are no HW faults in this server. Does anyone know how to turn of this led?
    I copied below part of the showplatform in the SC where the frame led is on and prtdiag in the OS 5.9
    Frame: 0003ba:694412 (Mon Feb 25 17:25:18 PST 2008)
    Fail LED:Off Service LED:Off
    Frame Fan Trays
    Left Tray Right Tray
    State: OK OK
    Power LED: On On
    Fault LED: Off Off
    Service LED: Off Off
    Speed: Slow Slow
    Temperature: Normal Normal
    Power: OK OK
    Fan 0: OK OK
    Fan 1: OK OK
    Fan 2: OK OK
    Frame RTS
    Rear/Left - OK, Connected to the System
    Rear/Right - OK
    Front/Left - OK, Connected to the System
    Front/Right - OK
    root@server> prtdiag
    System Configuration: Sun Microsystems sun4u Sun Fire E6900
    System clock frequency: 150 MHz
    Memory size: 114688 Megabytes
    ========================= CPUs ===============================================
    CPU Run E$ CPU CPU
    FRU Name ID MHz MB Impl. Mask
    /N0/SB0/P0 0,512 1500 32.0 US-IV+ 2.2
    /N0/SB0/P1 1,513 1500 32.0 US-IV+ 2.2
    /N0/SB0/P2 2,514 1500 32.0 US-IV+ 2.2
    /N0/SB0/P3 3,515 1500 32.0 US-IV+ 2.2
    /N0/SB1/P0 4,516 1500 32.0 US-IV+ 2.2
    /N0/SB1/P1 5,517 1500 32.0 US-IV+ 2.2
    /N0/SB1/P2 6,518 1500 32.0 US-IV+ 2.2
    /N0/SB1/P3 7,519 1500 32.0 US-IV+ 2.2
    /N0/SB2/P0 8,520 1500 32.0 US-IV+ 2.2
    /N0/SB2/P1 9,521 1500 32.0 US-IV+ 2.2
    /N0/SB2/P2 10,522 1500 32.0 US-IV+ 2.2
    /N0/SB2/P3 11,523 1500 32.0 US-IV+ 2.2
    /N0/SB3/P0 12,524 1500 32.0 US-IV+ 2.2
    /N0/SB3/P1 13,525 1500 32.0 US-IV+ 2.2
    /N0/SB3/P2 14,526 1500 32.0 US-IV+ 2.2
    /N0/SB3/P3 15,527 1500 32.0 US-IV+ 2.2
    /N0/SB4/P0 16,528 1500 32.0 US-IV+ 2.2
    /N0/SB4/P1 17,529 1500 32.0 US-IV+ 2.2
    /N0/SB4/P2 18,530 1500 32.0 US-IV+ 2.2
    /N0/SB4/P3 19,531 1500 32.0 US-IV+ 2.2
    /N0/SB5/P0 20,532 1500 32.0 US-IV+ 2.2
    /N0/SB5/P1 21,533 1500 32.0 US-IV+ 2.2
    /N0/SB5/P2 22,534 1500 32.0 US-IV+ 2.2
    /N0/SB5/P3 23,535 1500 32.0 US-IV+ 2.2
    ========================= Memory Configuration ===============================
    Logical Logical Logical
    Port Bank Bank Bank DIMM Interleave Interleave
    FRU Name ID Num Size Status Size Factor Segment
    /N0/SB0/P0/B0 0 0 2048MB pass 1024MB 16-way 0
    /N0/SB0/P0/B1 0 1 2048MB pass 1024MB 16-way 0
    /N0/SB0/P0/B0 0 2 2048MB pass 1024MB 16-way 0
    /N0/SB0/P0/B1 0 3 2048MB pass 1024MB 16-way 0
    /N0/SB0/P1/B0 1 0 2048MB pass 1024MB 16-way 0
    /N0/SB0/P1/B1 1 1 2048MB pass 1024MB 16-way 0
    /N0/SB0/P1/B0 1 2 2048MB pass 1024MB 16-way 0
    /N0/SB0/P1/B1 1 3 2048MB pass 1024MB 16-way 0
    /N0/SB0/P2/B0 2 0 2048MB pass 1024MB 16-way 0
    /N0/SB0/P2/B1 2 1 2048MB pass 1024MB 16-way 0
    /N0/SB0/P2/B0 2 2 2048MB pass 1024MB 16-way 0
    /N0/SB0/P2/B1 2 3 2048MB pass 1024MB 16-way 0
    /N0/SB0/P3/B0 3 0 2048MB pass 1024MB 16-way 0
    /N0/SB0/P3/B1 3 1 2048MB pass 1024MB 16-way 0
    /N0/SB0/P3/B0 3 2 2048MB pass 1024MB 16-way 0
    /N0/SB0/P3/B1 3 3 2048MB pass 1024MB 16-way 0
    /N0/SB1/P0/B0 4 0 1024MB pass 512MB 16-way 1
    /N0/SB1/P0/B1 4 1 1024MB pass 512MB 16-way 1
    /N0/SB1/P0/B0 4 2 1024MB pass 512MB 16-way 1
    /N0/SB1/P0/B1 4 3 1024MB pass 512MB 16-way 1
    /N0/SB1/P1/B0 5 0 1024MB pass 512MB 16-way 1
    /N0/SB1/P1/B1 5 1 1024MB pass 512MB 16-way 1
    /N0/SB1/P1/B0 5 2 1024MB pass 512MB 16-way 1
    /N0/SB1/P1/B1 5 3 1024MB pass 512MB 16-way 1
    /N0/SB1/P2/B0 6 0 1024MB pass 512MB 16-way 1
    /N0/SB1/P2/B1 6 1 1024MB pass 512MB 16-way 1
    /N0/SB1/P2/B0 6 2 1024MB pass 512MB 16-way 1
    /N0/SB1/P2/B1 6 3 1024MB pass 512MB 16-way 1
    /N0/SB1/P3/B0 7 0 1024MB pass 512MB 16-way 1
    /N0/SB1/P3/B1 7 1 1024MB pass 512MB 16-way 1
    /N0/SB1/P3/B0 7 2 1024MB pass 512MB 16-way 1
    /N0/SB1/P3/B1 7 3 1024MB pass 512MB 16-way 1
    /N0/SB2/P0/B0 8 0 1024MB pass 512MB 16-way 2
    /N0/SB2/P0/B1 8 1 1024MB pass 512MB 16-way 2
    /N0/SB2/P0/B0 8 2 1024MB pass 512MB 16-way 2
    /N0/SB2/P0/B1 8 3 1024MB pass 512MB 16-way 2
    /N0/SB2/P1/B0 9 0 1024MB pass 512MB 16-way 2
    /N0/SB2/P1/B1 9 1 1024MB pass 512MB 16-way 2
    /N0/SB2/P1/B0 9 2 1024MB pass 512MB 16-way 2
    /N0/SB2/P1/B1 9 3 1024MB pass 512MB 16-way 2
    /N0/SB2/P2/B0 10 0 1024MB pass 512MB 16-way 2
    /N0/SB2/P2/B1 10 1 1024MB pass 512MB 16-way 2
    /N0/SB2/P2/B0 10 2 1024MB pass 512MB 16-way 2
    /N0/SB2/P2/B1 10 3 1024MB pass 512MB 16-way 2
    /N0/SB2/P3/B0 11 0 1024MB pass 512MB 16-way 2
    /N0/SB2/P3/B1 11 1 1024MB pass 512MB 16-way 2
    /N0/SB2/P3/B0 11 2 1024MB pass 512MB 16-way 2
    /N0/SB2/P3/B1 11 3 1024MB pass 512MB 16-way 2
    /N0/SB3/P0/B0 12 0 1024MB pass 512MB 16-way 3
    /N0/SB3/P0/B1 12 1 1024MB pass 512MB 16-way 3
    /N0/SB3/P0/B0 12 2 1024MB pass 512MB 16-way 3
    /N0/SB3/P0/B1 12 3 1024MB pass 512MB 16-way 3
    /N0/SB3/P1/B0 13 0 1024MB pass 512MB 16-way 3
    /N0/SB3/P1/B1 13 1 1024MB pass 512MB 16-way 3
    /N0/SB3/P1/B0 13 2 1024MB pass 512MB 16-way 3
    /N0/SB3/P1/B1 13 3 1024MB pass 512MB 16-way 3
    /N0/SB3/P2/B0 14 0 1024MB pass 512MB 16-way 3
    /N0/SB3/P2/B1 14 1 1024MB pass 512MB 16-way 3
    /N0/SB3/P2/B0 14 2 1024MB pass 512MB 16-way 3
    /N0/SB3/P2/B1 14 3 1024MB pass 512MB 16-way 3
    /N0/SB3/P3/B0 15 0 1024MB pass 512MB 16-way 3
    /N0/SB3/P3/B1 15 1 1024MB pass 512MB 16-way 3
    /N0/SB3/P3/B0 15 2 1024MB pass 512MB 16-way 3
    /N0/SB3/P3/B1 15 3 1024MB pass 512MB 16-way 3
    /N0/SB4/P0/B0 16 0 1024MB pass 512MB 16-way 4
    /N0/SB4/P0/B1 16 1 1024MB pass 512MB 16-way 4
    /N0/SB4/P0/B0 16 2 1024MB pass 512MB 16-way 4
    /N0/SB4/P0/B1 16 3 1024MB pass 512MB 16-way 4
    /N0/SB4/P1/B0 17 0 1024MB pass 512MB 16-way 4
    /N0/SB4/P1/B1 17 1 1024MB pass 512MB 16-way 4
    /N0/SB4/P1/B0 17 2 1024MB pass 512MB 16-way 4
    /N0/SB4/P1/B1 17 3 1024MB pass 512MB 16-way 4
    /N0/SB4/P2/B0 18 0 1024MB pass 512MB 16-way 4
    /N0/SB4/P2/B1 18 1 1024MB pass 512MB 16-way 4
    /N0/SB4/P2/B0 18 2 1024MB pass 512MB 16-way 4
    /N0/SB4/P2/B1 18 3 1024MB pass 512MB 16-way 4
    /N0/SB4/P3/B0 19 0 1024MB pass 512MB 16-way 4
    /N0/SB4/P3/B1 19 1 1024MB pass 512MB 16-way 4
    /N0/SB4/P3/B0 19 2 1024MB pass 512MB 16-way 4
    /N0/SB4/P3/B1 19 3 1024MB pass 512MB 16-way 4
    /N0/SB5/P0/B0 20 0 1024MB pass 512MB 16-way 5
    /N0/SB5/P0/B1 20 1 1024MB pass 512MB 16-way 5
    /N0/SB5/P0/B0 20 2 1024MB pass 512MB 16-way 5
    /N0/SB5/P0/B1 20 3 1024MB pass 512MB 16-way 5
    /N0/SB5/P1/B0 21 0 1024MB pass 512MB 16-way 5
    /N0/SB5/P1/B1 21 1 1024MB pass 512MB 16-way 5
    /N0/SB5/P1/B0 21 2 1024MB pass 512MB 16-way 5
    /N0/SB5/P1/B1 21 3 1024MB pass 512MB 16-way 5
    /N0/SB5/P2/B0 22 0 1024MB pass 512MB 16-way 5
    /N0/SB5/P2/B1 22 1 1024MB pass 512MB 16-way 5
    /N0/SB5/P2/B0 22 2 1024MB pass 512MB 16-way 5
    /N0/SB5/P2/B1 22 3 1024MB pass 512MB 16-way 5
    /N0/SB5/P3/B0 23 0 1024MB pass 512MB 16-way 5
    /N0/SB5/P3/B1 23 1 1024MB pass 512MB 16-way 5
    /N0/SB5/P3/B0 23 2 1024MB pass 512MB 16-way 5
    /N0/SB5/P3/B1 23 3 1024MB pass 512MB 16-way 5
    ========================= IO Cards =========================
    Bus Max
    IO Port Bus Freq Bus Dev,
    FRU Name Type ID Side Slot MHz Freq Func State Name Model
    /N0/IB6/P0 PCI 24 B 0 33 33 1,0 ok pci-pci8086,b154.0/network (netw+ pci-bridge
    /N0/IB6/P0 PCI 24 B 0 33 33 0,0 ok network-pci100b,35.30 SUNW,pci-ce
    /N0/IB6/P0 PCI 24 B 0 33 33 1,0 ok network-pci100b,35.30 SUNW,pci-ce
    /N0/IB6/P0 PCI 24 B 0 33 33 2,0 ok scsi-pci1000,b.7/disk (block)
    /N0/IB6/P0 PCI 24 B 0 33 33 2,1 ok scsi-pci1000,b.7/disk (block)
    /N0/IB6/P0 PCI 24 A 3 66 66 1,0 ok network-pci100b,35.30 SUNW,pci-ce
    /N0/IB6/P1 PCI 25 B 4 66 66 1,0 ok pci-pci8086,537c.7/network (netw+ pci-bridge
    /N0/IB6/P1 PCI 25 B 4 66 66 0,0 ok network-pci100b,35.30 SUNW,pci-x-qge
    /N0/IB6/P1 PCI 25 B 4 66 66 1,0 ok network-pci100b,35.30 SUNW,pci-x-qge
    /N0/IB6/P1 PCI 25 B 4 66 66 2,0 ok network-pci100b,35.30 SUNW,pci-x-qge
    /N0/IB6/P1 PCI 25 B 4 66 66 3,0 ok network-pci100b,35.30 SUNW,pci-x-qge
    /N0/IB6/P1 PCI 25 A 7 66 66 1,0 ok SUNW,qlc-pci1077,2312.1077.10a.2+ 0x10a
    /N0/IB6/P1 PCI 25 A 7 66 66 1,1 ok SUNW,qlc-pci1077,2312.1077.10a.2+ 0x10a
    /N0/IB7/P0 PCI 26 B 0 33 33 1,0 ok pci12d4,301-pci12d4,301.12d4.301+
    /N0/IB7/P0 PCI 26 B 1 33 33 2,0 ok pci12d4,301-pci12d4,301.12d4.301+
    /N0/IB7/P0 PCI 26 A 2 66 66 2,0 ok pci12d4,301-pci12d4,301.12d4.301+
    /N0/IB7/P0 PCI 26 A 3 66 66 1,0 ok pci12d4,301-pci12d4,301.12d4.301+
    /N0/IB8/P0 PCI 28 B 0 33 33 1,0 ok pci-pci8086,b154.0/network (netw+ pci-bridge
    /N0/IB8/P0 PCI 28 B 0 33 33 0,0 ok network-pci100b,35.30 SUNW,pci-ce
    /N0/IB8/P0 PCI 28 B 0 33 33 1,0 ok network-pci100b,35.30 SUNW,pci-ce
    /N0/IB8/P0 PCI 28 B 0 33 33 2,0 ok scsi-pci1000,b.7/disk (block)
    /N0/IB8/P0 PCI 28 B 0 33 33 2,1 ok scsi-pci1000,b.7/disk (block)
    /N0/IB8/P0 PCI 28 A 3 66 66 1,0 ok network-pci100b,35.30 SUNW,pci-ce
    /N0/IB8/P1 PCI 29 B 4 66 66 1,0 ok pci-pci8086,537c.7/network (netw+ pci-bridge
    /N0/IB8/P1 PCI 29 B 4 66 66 0,0 ok network-pci100b,35.30 SUNW,pci-x-qge
    /N0/IB8/P1 PCI 29 B 4 66 66 1,0 ok network-pci100b,35.30 SUNW,pci-x-qge
    /N0/IB8/P1 PCI 29 B 4 66 66 2,0 ok network-pci100b,35.30 SUNW,pci-x-qge
    /N0/IB8/P1 PCI 29 B 4 66 66 3,0 ok network-pci100b,35.30 SUNW,pci-x-qge
    /N0/IB8/P1 PCI 29 A 7 66 66 1,0 ok SUNW,qlc-pci1077,2312.1077.10a.2+ 0x10a
    /N0/IB8/P1 PCI 29 A 7 66 66 1,1 ok SUNW,qlc-pci1077,2312.1077.10a.2+ 0x10a
    /N0/IB9/P0 PCI 30 B 0 33 33 1,0 ok pci12d4,301-pci12d4,301.12d4.301+
    /N0/IB9/P0 PCI 30 B 1 33 33 2,0 ok pci12d4,301-pci12d4,301.12d4.301+
    /N0/IB9/P0 PCI 30 A 2 66 66 2,0 ok pci12d4,301-pci12d4,301.12d4.301+
    /N0/IB9/P0 PCI 30 A 3 66 66 1,0 ok pci12d4,301-pci12d4,301.12d4.301+
    ========================= Active Boards for Domain ===========================
    Board Receptacle Occupant
    FRU Name Type Status Status Condition Info
    /N0/SB0 CPU_V3 connected configured ok powered-on, assigned
    /N0/SB1 CPU_V3 connected configured ok powered-on, assigned
    /N0/SB2 CPU_V3 connected configured ok powered-on, assigned
    /N0/SB3 CPU_V3 connected configured ok powered-on, assigned
    /N0/SB4 CPU_V3 connected configured ok powered-on, assigned
    /N0/SB5 CPU_V3 connected configured ok powered-on, assigned
    /N0/IB6 PCI+I/OBo connected configured ok powered-on, assigned
    /N0/IB7 PCI+I/OBo connected configured ok powered-on, assigned
    /N0/IB8 PCI+I/OBo connected configured ok powered-on, assigned
    /N0/IB9 PCI+I/OBo connected configured ok powered-on, assigned
    ========================= Available Boards/Slots for Domain ===========================
    Board Receptacle Occupant
    FRU Name Type Status Status Condition Info
    There are currently no Boards/Slots available to this Domain
    ========================= Hardware Failures ==================================
    No Hardware failures found in System

    If I understand your description correctly,
    it's the frame manager that has the fault light.
    That's an old quirk that is specific to that rack component.
    It has (essentially) no impact on whatever systems are installed to the rack.
    It is usually just a visual annoyance.
    Use your service contract and open a support case with Sun.
    That will give them a chance to help you check on everything.
    They'll walk you through the correct steps of power-cycling the frame manager.
    That can be done while the servers are happily serving.

  • How to change language of the server monitor ?

    hi all,
    How to change language of the server monitor ? i got it in japanese and would like to turn it into English.
    Thx for your help,

    We use japanese strings only when your server locale has "jp": FindNoCase("Japan", GetLocale()) NEQ 0. So you may not be able to individually change  server monitor's flash client, but there are two ways to change it back to english on server level
    1) Check your server locale and change it to anything but japanese.
    2) Rename smresource_en.xml to smresource_jp.xml in CFIDE\administrator\monitor (take a back up).
    Thanks,
    Chandan Kumar

Maybe you are looking for

  • TFS SSRS bug age report

    Hello, I want to create pie chart report which will display bug counts according to their age i.e. within last month, 1-3 month old and 3+ month ago. I have got dataset (TFS2010Olap as data source) which is displaying 2 columns, System_CreatedDate an

  • Hi - for some reason, my IPAD3 mail client has decided it can no longer connect to my Exchange server.

    Hi - for some reason, my IPAD3 mail client has decided it can no longer connect to my Exchange server.  It's worked like a charm for weeks.  Any thoughts? For the record, I've got a POP mail account that is working fine on the machine and the WIFI is

  • How to specify  inclusion and exclusion rules for File data sources

    This is the seed URL for a file data source: file://localhost/c:/myDir/ I want to exclude indexing and searching of files under: file://localhost/c:/myDir/obsolete/ What is the exact format for the exclusion URL? I have tried both file://localhost/c:

  • Are Radio Pre-Sets Too Much To Ask?

    Every radio made in the las 50 years has preset buttons allowing you quick access to the stations you listen to most. How hard would that be to add to iTunes? This is even more important now that they have jacked up the station groupings.

  • Auugh!  Frustrated WebHost hunter here!

    There's too many web host out there. I even tried googling the right web host. What I want in a web host is it's ability to fully used iWeb's features such as photo web galleries which is top most important to me. I did tried Rapidweaver and it's not