Install ILMA in a remote machine

Hello,
I would like to know if it's possible to install ILMA in a remote machine?
I want to install the database in one machine and the application server, APEX and ILMA in other machine.
Is it possible or I have to install everything is the same server?
Best Regards.
Óscar.

Hi Óscar,
This is an interesting scenario. Presently, you must install everything on the machine targeted for management. The limitation centers around our PL/SQL package, which assumes that all data is local. If you install ILMA on one machine, it will know nothing about the remote setup.
This configuration has been suggested by others as well, so I am confident that we will consider the approach in a future release.
Thanks for using ILMA!
Greg

Similar Messages

  • How can i install oracle from a remote machine

    Hi,
    I need to install oracle 8i from a remote machie using a public ip.For this i tried connecting remote erver usig Xwindows like cygwin,Xwin-32. but my remote machie is not connecting and showing blank screen.I can connect through putty and tried for silent installation but it was failed.Can any one give me some suggetion for remote installation or atleast for silet intallation.
    Thaks and Regard
    Anand

    try VNC
    http://www.realvnc.com/
    install vncserver on server side
    and run vncclient on either unix box or windows pc
    just pick a version you like.
    Most importantly It's free
    null

  • Install SQL Server 2012 SP1 on a Windows Server 2012 R2 Failover Cluster - hangs at "Running discovery on remote machine" on VMWare VSphere 5.5 Update 1

    <p>Hi,</p><p>I'm trying to install SQL Server 2012 SP1 on the first node of a Windows Server 2012 R2 failover cluster.</p><p>The install hangs whilst displaying the "Please wait while Microsoft SQL Server 2012 Servce
    Pack 1 Setup processes the current operation." message.</p><p>The detail.txt log file shows as follows:</p><p>(01) 2014-07-17 15:36:35 Slp: -- PidInfoProvider : Use cached PID<br />(01) 2014-07-17 15:36:35 Slp: -- PidInfoProvider
    : NormalizePid is normalizing input pid<br />(01) 2014-07-17 15:36:35 Slp: -- PidInfoProvider : NormalizePid found a pid containing dashes, assuming pid is normalized, output pid<br />(01) 2014-07-17 15:36:35 Slp: -- PidInfoProvider : Use cached
    PID<br />(01) 2014-07-17 15:36:35 Slp: Completed Action: FinalCalculateSettings, returned True<br />(01) 2014-07-17 15:36:35 Slp: Completed Action: ExecuteBootstrapAfterExtensionsLoaded, returned True<br />(01) 2014-07-17 15:36:35 Slp: ----------------------------------------------------------------------<br
    />(01) 2014-07-17 15:36:35 Slp: Running Action: RunRemoteDiscoveryAction<br />(01) 2014-07-17 15:36:36 Slp: Running discovery on local machine<br />(01) 2014-07-17 15:36:36 Slp: Discovery on local machine is complete<br />(01) 2014-07-17
    15:36:36 Slp: Running discovery on remote machine: XXX-XXX-01</p><p>After about 4 hours and 10 minutes, the step seems to time out and move on, however it doesn't seem to have discovered what it needs to and the setup subsuently fails</p><p></p>

    Hi,
    Sorry Information you provided did not helped can you post content of both summary file and details,txt file on shared location for analysis.
    Can you download Service pack again and try once more
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • IBM DB2 9.7 Express-C instalation on remote machine

    Hi guys,
    I'm trying to install IBM DB2 9.7 Express-C on a remote machine that does not have xorg installed.
    I've managed to enable forwarding X over ssh (tested on xeyes), but when i start db2setup, it doesn't do anything.
    Output in console is this:
    user@remotemachine$ ./db2setup
    DBI1190I db2setup is preparing the DB2 Setup wizard which will guide
    you through the program setup process. Please wait.
    DBI1160I Non-root install is being performed.
    If i login with root then the output is basically same:
    user@remotemachine$./db2setup
    DBI1190I db2setup is preparing the DB2 Setup wizard which will guide
    you through the program setup process. Please wait.
    I'm running latest arch with xfce4 with slim for starting DE.
    Can anybody give me some poiners on how to install this?

    spendzo wrote:Can anyone comment if this is ok...?
    Yeah, it's great! I've tested it for you and I'm keeping it.:D Made some small adjustments. Thanks!
    #!/bin/bash
    # /etc/rc.d/db2d
    # Run-level Startup script for the DB2 Databsse
    export DB_USER=db2inst1
    if [ -f /home/db2inst1/sqllib/db2profile ]; then
    . /home/db2inst1/sqllib/db2profile
    fi
    case "$1" in
    start)
    echo "" >> /var/log/db2.log
    echo "----------------------------------------------------" >> /var/log/db2.log
    echo "----------------------------------------------------" >> /var/log/db2.log
    echo "Starting DB2 Database: " >> /var/log/db2.log
    echo "----------------------------------------------------" >> /var/log/db2.log
    date +"! %T %a %D : Starting DB2 Database" >> /var/log/db2.log
    echo "----------------------------------------------------" >> /var/log/db2.log
    echo "Starting DB2 Database: " >> /var/log/db2.log
    su $DB_USER -c "$DB2DIR/bin/db2 db2start" >> /var/log/db2.log
    su $DB_USER -c "$DB2DIR/bin/db2 activate db sample" >> /var/log/db2.log
    echo "Done." >> /var/log/db2.log
    echo "" >> /var/log/db2.log
    echo "----------------------------------------------------" >> /var/log/db2.log
    date +"! %T %a %D : Start completed." >> /var/log/db2.log
    echo "----------------------------------------------------" >> /var/log/db2.log
    touch /var/lock/db2d
    echo "OK"
    stop)
    echo "Shutting Down DB2 Database:" >> /var/log/db2.log
    echo "----------------------------------------------------" >> /var/log/db2.log
    date +"! %T %a %D : Shutting Down DB2 Databases" >> /var/log/db2.log
    echo "----------------------------------------------------" >> /var/log/db2.log
    echo "Shutting Down DB2 Database: " >> /var/log/db2.log
    su $DB_USER -c "$DB2DIR/bin/db2 deactivate db sample" >> /var/log/db2.log
    su $DB_USER -c "$DB2DIR/bin/db2 db2stop force" >> /var/log/db2.log
    echo "Done." >> /var/log/db2.log
    echo "" >> /var/log/db2.log
    echo "----------------------------------------------------" >> /var/log/db2.log
    date +"! %T %a %D : Shutdown completed." >> /var/log/db2.log
    echo "----------------------------------------------------" >> /var/log/db2.log
    rm -f /var/lock/db2d
    echo "OK"
    reload|restart)
    echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" >> /var/log/db2.log
    echo "DB2 Restart Initiated... " >> /var/log/db2.log
    echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" >> /var/log/db2.log
    $0 stop
    $0 start
    echo "Usage: `basename $0` start|stop|restart|reload"
    exit 1
    esac
    exit 0

  • Install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure

    Hi,
    I am creating a form application where I want to install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure it. I copied the files to the remote machine local directory, wanted to know how to install exe on remote machine and
    configure it. could some one help me with code.
    Thanks
    Thanks,

    Hi sayedfarhan,
    Thank you for posting in MSDN forum.
    >>I am creating a form application where I want to install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure it.
    According to your issue, as you said that you want to install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure it.
    So please you refer the following MSDN document to install and configure the test agent and test controller on this remote machine.
    https://msdn.microsoft.com/en-us/library/dd648127.aspx?f=255&MSPPError=-2147217396
    Generally, I know that we used this test controller and test agent to run automated tests on remote machine. Note:I know that if you want to install and configure test agent and test controller for automated test, it will not need to any code for
    it.
    So whether your issue is related to run your automated tests remotely with the test agent and test controller.
    In addition, as you said that:
    >>I am creating a form application where I want to install vstf_testagent.exe and vstf_testcontroller.exe on remote machine and configure it. 
    Could you please tell me whether you want to install and configure the test controller and test agent for your form app?  
    If I misunderstanding your issue, please tell me more detailed message about your issue.
    Best Regards, 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to install on a remote machine

    Hi,
    I want to install 9i on a remote Solaris machine. I have telnet
    access to the system. Can I install 9i over a telnet session ?.
    Should I install exceed perhaps ?. Would it make it easier ?.
    Are there any settings xhost, xterm etc to be set ?
    Thanks for any help.
    Vissu

    To the best of my knowledge, you will have to have remote x-
    windows capability to install 9i.
    I have done this several times for 8 and 8i and it has worked
    just fine. I nfs mount the cdrom from my workstation to the host
    I'm installing Oracle on, establish the DISPLAY environment so
    the host can throw windows back to my workstation, and execute
    the xhost command so it can work.
    Caveat: my workstation is a Sun Solaris machine. I have no idea
    if you can do this from a Windows machine running Reflection.

  • Using remote machines for report generation

    Since LabView does not have cross-platform openoffice support, I was looking at ways of generating reports from a LabView session (2010) running on a mac. The report generation VI contains a somewhat suggestive machine name input. Can one connect to a remote machine (which is windows XP and has microsoft word / excel installed) to generate reports from a mac running LabView ?

    m-s wrote:
    Since LabView does not have cross-platform openoffice support, I was looking at ways of generating reports from a LabView session (2010) running on a mac. The report generation VI contains a somewhat suggestive machine name input. Can one connect to a remote machine (which is windows XP and has microsoft word / excel installed) to generate reports from a mac running LabView ?
    With some work I think is is do-able.
    If the PC had an exe deployed and running that was served via VI Server the report could be run and generated on the PC when invoked from the Mac.
    So in theory yes!
    Edit:
    VI server is not required if the exe on the PC listens at a TCP/IP port and supports a protocol to accept the report "job".
    I'll watch to see (and in hopes of) a better solution form others.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Not able to access database from a remote machine using SQL Server Management Studio

    Hi,
    I have a DB_BOX with SQL Server 2008 R2 installed. I can access the databases on the local machine using SQL Server Management Studio but it is not accessible from other machines, though the machines are in same domain.
    I have remote enabled on SQL Server box, TCP enabled, firewall off. I checked with IP Address too, all SQL Server services are running.
    The SQL Server log shows the message
    The requested service has been stopped or disabled and is unavailable at this time. The connection has been closed.
    I get the below message in SSMS from remote machine.
    Details of error message are
    ===================================
    Cannot connect to DB_BOX.
    ===================================
    A connection was successfully established with the server, but then an error occurred during the login process. (provider: TCP Provider, error: 0 - The specified network name is no longer available.) (.Net SqlClient Data Provider)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=64&LinkId=20476
    Server Name: DB_BOX
    Error Number: 64
    Severity: 20
    State: 0
    Program Location:
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParserStateObject.ReadSniError(TdsParserStateObject stateObj, UInt32 error)
       at System.Data.SqlClient.TdsParserStateObject.ReadSni(DbAsyncResult asyncResult, TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParserStateObject.ReadNetworkPacket()
       at System.Data.SqlClient.TdsParserStateObject.ReadBuffer()
       at System.Data.SqlClient.TdsParserStateObject.ReadByte()
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlInternalConnectionTds.CompleteLogin(Boolean enlistOK)
       at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject)
       at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(String host, String newPassword, Boolean redirectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart)
       at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(SqlConnection owningObject, SqlConnectionString connectionOptions, String newPassword, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection)
       at System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup)
       at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection)
       at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)
       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()

    Sorry, missed the message from the errorlog in the original post. You shouldn't have included that big .Net dump that hid the important facts. :-)
    My first Google attempt on that message (which I have never seen before) suggests that the TCP Enpoint is stopped, so try this:
    ALTER ENDPOINT [TSQL Default TCP]
    STATE=STARTED;
    Erland Sommarskog, SQL Server MVP, [email protected]
    This solves the problem. Thanks...

  • Install JSC on a remote linux

    Hi.
    Did anybody install JSC on a remote linux exporting the X?
    I want to install it on our department server (my machine has not memory enough) but, although the X windows are correctly exported (xclock works fine) when i try to execute the installer i get:
    El instalador no se ha podido ejecutar en modo gr�fico. Intente ejecutar el instalador con el distintivo -console o -silent.
    Then i try with "-console" but i get:
    The wizard cannot continue because of the following error: Invalid command line option: console is not supported (1001) (403)
    WARNING: could not delete temporary file /root/ismp001/4095551
    Thanks

    I've tried to install it on the server itself, starting the X on it. The errors are the same, so it is not an error about exporting the X...
    OK, the problem was solved with the instructions from
    http://blogs.sun.com/marcoscorner/entry/creator_2_0_ea_on

  • How to install Data Insight on remote server

    Hello,
    I am working in an enviorinement in which Data Services has been installed on remote server and i access it using Remote desktop. Now i need to install Data Insight and i am not sure where should Data Insight be installed. should it be installed on my local machine or on remote server. If on remote server, can i install it from my local machine?
    Thanks
    Adi

    What was your solution?
    Cheers,
    Julius

  • Error installing ODB+OBIEE in one machine and OWB in another one

    Hello,
    I have two machines with Oracle Linux 5:
    Machine 1 --> Oracle Linux 5 (64 bits) + Oracle DB 11g R2 + OBI 11g R1
    Machine 2 --> Oracle Linux 5 (32 bits) + I would like to have here OWB 11g
    To install OWB in the machine 2 to have access to ODB in the other machine I have followed:
    http://download.oracle.com/docs/cd/E11882_01/owb.112/e17130.pdf --> Chapter 4: Configuring Oracle Warehouse Builder for Linux (I have done these steps over Machine 1):
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/cat_owb.sql USERS
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/reset_owbcc_home.sql/u01/app/oracle/product/11.2.0/dbhome_1/owb
    alter user owbsys identified by owbsys account unlock;
    alter user owbsys_audit identified by owbsys_audit account unlock;
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/remote_owb_install.sql /u01/OWB_RemoteOver Machine 2 I have tried to create the repository:
    /reposinst.shBut in the section "Creating first workspace in the Repository on Linux" in the "OWBSYS Information" screen I have the following error:
    "*El software OWB con la versión compatible se debe instalar localmente en la máquina servidor de base de datos. Si ya está instalado, obtenga las credenciales de usuario de DBA y ejecute el script SQL owb/UnifiedRepos/remote_owb_install.sql. en la máquina servidor de bases de datos. Esto creará un directorio de bases de datos denorminado 'OWB_REMOTE_ADMIN' al que accederá la instalación remota para leer el directorio de servidores de datos OWBHOME/owb/bin/admin. Vuelva a iniciar el Asistente de Respositorios o ejecute el comando de script OMBSEED de OWB para iniciar el repositorio*"
    (OWB with Software-compatible version should be installed locally on the server machine database. If already installed, obtain the user credentials and run the script DBA SQL OWB / UnifiedRepos / remote_owb_install.sql. on the server machine database. This will create a database directory denorminado 'OWB_REMOTE_ADMIN' that will access the remote installation to read the data directory server OWBHOME / OWB / bin / admin. Start the Wizard repositories or run the script command to start OMBSEED of OWB repository)
    Is necessary to install OWB before to run reposinst.sh? Because I can't:
    Error al llamar al destino 'ntcontab.o' del archivo make '/home/oracle/product/11.1.0/OWB/network/lib/inst_net_client.mk'.
    (Failed to call destination 'ntcontab.o' of makefile '/ home/oracle/product/11.1.0/OWB/network/lib/inst_net_client.mk'.)
    I am not about the procedure to follow to install OWB in a different machine over a DB that isn't in local machine.
    I aprreciate any idea to solve it.
    Thank you in advance.
    Regards,
    Mónica.

    Hello,
    I have two machines with Oracle Linux 5:
    Machine 1 --> Oracle Linux 5 (64 bits) + Oracle DB 11g R2 + OBI 11g R1
    Machine 2 --> Oracle Linux 5 (32 bits) + I would like to have here OWB 11g
    To install OWB in the machine 2 to have access to ODB in the other machine I have followed:
    http://download.oracle.com/docs/cd/E11882_01/owb.112/e17130.pdf --> Chapter 4: Configuring Oracle Warehouse Builder for Linux (I have done these steps over Machine 1):
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/cat_owb.sql USERS
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/reset_owbcc_home.sql/u01/app/oracle/product/11.2.0/dbhome_1/owb
    alter user owbsys identified by owbsys account unlock;
    alter user owbsys_audit identified by owbsys_audit account unlock;
    @/u01/app/oracle/product/11.2.0/dbhome_1/owb/UnifiedRepos/remote_owb_install.sql /u01/OWB_RemoteOver Machine 2 I have tried to create the repository:
    /reposinst.shBut in the section "Creating first workspace in the Repository on Linux" in the "OWBSYS Information" screen I have the following error:
    "*El software OWB con la versión compatible se debe instalar localmente en la máquina servidor de base de datos. Si ya está instalado, obtenga las credenciales de usuario de DBA y ejecute el script SQL owb/UnifiedRepos/remote_owb_install.sql. en la máquina servidor de bases de datos. Esto creará un directorio de bases de datos denorminado 'OWB_REMOTE_ADMIN' al que accederá la instalación remota para leer el directorio de servidores de datos OWBHOME/owb/bin/admin. Vuelva a iniciar el Asistente de Respositorios o ejecute el comando de script OMBSEED de OWB para iniciar el repositorio*"
    (OWB with Software-compatible version should be installed locally on the server machine database. If already installed, obtain the user credentials and run the script DBA SQL OWB / UnifiedRepos / remote_owb_install.sql. on the server machine database. This will create a database directory denorminado 'OWB_REMOTE_ADMIN' that will access the remote installation to read the data directory server OWBHOME / OWB / bin / admin. Start the Wizard repositories or run the script command to start OMBSEED of OWB repository)
    Is necessary to install OWB before to run reposinst.sh? Because I can't:
    Error al llamar al destino 'ntcontab.o' del archivo make '/home/oracle/product/11.1.0/OWB/network/lib/inst_net_client.mk'.
    (Failed to call destination 'ntcontab.o' of makefile '/ home/oracle/product/11.1.0/OWB/network/lib/inst_net_client.mk'.)
    I am not about the procedure to follow to install OWB in a different machine over a DB that isn't in local machine.
    I aprreciate any idea to solve it.
    Thank you in advance.
    Regards,
    Mónica.

  • Changing Task Server from local machine to remote machine

    Hello all, and thanks for reading this.
    My question is this, and I apologize if I've missed something in the forums and online, but I can't seem to find the answer to this question anywhere.
    I have ARD on my laptop as the task server, but we've bought another copy to place on an XSERVE as a centralized task server. What I want to do is change the package installation routines so that the XServe is the autoinstall box. I can't seem to find any documentation that explains how to do this.
    Thanks in advance.

    Remote Desktop/Preferences/Task Server
    Add the FQDN or I.P address of your server in this pane on your book(basically your pointing your book to your installed software on the other machine). Setup your server with the installs you want it to make, and administer it via your book (or any machines with another unlimited ARD) IF you want report generation, you would schedule the clients to send the info to the server. A task server can only do 2 things, install packages or change client settings, thats it.

  • Home Directory for AD on remote machine

    Hi,
    Requirement is like this:-
    As user is provisioned to AD a home directory for user is created on remote computer with name of user. I had wrriten a VB script to create a folder in users folder(folder already shared) on remote machine. I am able to sucessfully create the folder when i run script through command prompt. Now i write a java code to run the script with following command in java code.
    Process process = Runtime.getRuntime().exec("cmd /c cscript d:/users "+userid + " " + action);
    I am able to run the java code from eclispe and folder is created in users folder on remote machine.
    Now i had added a process task in AD process form and attached the adapter in which this java code is executed to run the script and i called this on response code (sucessfully provisioned) of AD .now when i provisoned user to AD process is called but error is their as cmd is not a command on linux... how can i run the script on linux.
    2) If folder users folder is not shared i have to give permissions on folder to particular user with userid and password to create its home directory in it how can i achieve this using vbscript??

    I assume you are creating folders in a file server and its a windows machine , is it ?
    You can install a remote manager on file server or on any other machine in network and execute your scripts remotely using remote manager
    Also you can execute your script like wscript c:\CreateFolder.vbs
    Thanks
    Suren
    Edited by: Suren.Singh on Aug 10, 2010 3:20 PM

  • Screen Resolution mismatch. Can I force resolution prefs of remote machine?

    Using Apple Remote Desktop, or Timbuktu, I'm connecting to a remote server that does not have a monitor attached.
    Problem: I only have 2 screen resolutions available on the remote machine: 800 x 600 or 1024 x 768.
    My local screen resolution is 2560 x 1600 (using a 30" Cinema Display).
    Question: Can I change the display preferences of the remote machine to give me the same resolution as my local machine? (2560 x 1600)?

    You are running the server in what's been referred to as 'headless' mode, meaning no monitor. Without a monitor installed the video card will default to one of three VESA compatible resolutions, 640X480, 800X600, or 1024X768; because it does not sense any EDID data on the display port.
    You need one of these:
    http://drbott.com/prod/db.lasso?code=0153-GHDD
    which will allow you to set the display resolution on the remote 'headless' unit using the 'Displays' System Preferences panel. You don't even have to reboot the server to make it work, just attach the device and set the resolution to what you want to the limit of the video card's resolution. Settings will be preserved across reboots as the device present the correct EDID data to the video card even with no monitor attached.

  • Security warning wants to install certification for a remote computer

    Every bootup, before opening anything, i get a Security Warning that a "oracle" certificate wants to install for a remote computer to access my machine. I always click no, having no idea what this is, and I certainly do not want to allow a remote computer to access. I have screen shots of the details but I don't see how to attach a jpg here. I've searched the registry and startup items and nothing resembles my issue. Please note this does not occur when opening IE or FF, but as soon as Windows loads the desktop screen, as if the registry is triggering this cert.

    Many thanks. I am somewhat experienced in editing the registry, and know where all the 'run' and 'runonce' strings are located. I have searched them all. I have also searched the reg for terms used in the security warning. I've run CC cleaner, malwarebytes, norton security, and two online security sites, and they call come back normal. No problems.
    But I reboot and there is the warning, telling me that an Oracle certificate wants to install to enable a remote computer access. Of course I click NO, but I cannot find how to kill the beast.

Maybe you are looking for

  • Insert into table a large amount of records

    I was trying to find a fast way to optimize a script that insert a large amount of records into a table. The initial script was like insert into table_xxxx select a.camp1, a.camp2, a.camp3 a.camp4, b.camp1, b.camp2, b.camp3 from table_a a, table_b b

  • How to save text file in same format for PC/Mac?

    I have a text file on my Macbook.  It doesn't have any special formatting.  I save it to Dropbox and open it on my PC (Vista).  All of the carriage returns are missing and text is a big run on.  How do I get carriage returns to transfer to the PC?

  • Unable to place bookmarks in bookmark toolbar.

    Have tried everything to place bookmarked web sites in the bookmarks toolbar. But to no avail. One solution was to drag the Icon from the address bar, but I only see a padlock. When trying to bookmark a site from the drop down menu and ask it to go t

  • XSS (ESS/MSS) Configuration and Installation Guide

    Hello, I have checked archived postings and see people sharing configuration and installation guides for ESS/MSS. I wonder if people are still sharing these documents? I'm on EP 2004s SP14 by the way. Help would be greatly appreciated. Jan

  • 10.7.4 update stuck

    Hi all, Doing the safari update (i think, didnt really look as I knew it was an official update) and its been going for ages now! If I click the SOFTWARE UPDATE doc icon it brings up the update progress bar but its been right at the end now for ages!