"Host String" to check install

Do I enter the SID into the host string to test install?
On my server (Oracle 8i for Netware) in tnsnames.ora, I have a service variable and a SID. On my client (Oracle 8i for NT),in tnsnames.ora, I have a service variable and a
Service Name variable.
TIA. I am very new to this.

The ability to detect the jre at the update level, as well as the ability to install a specific version are only present if the DT plugins are installed.
These plugins only exist for windows and are only part of the 6u10 (1.6.0_10) versions of java.
The javascript you show uses an undefined minimumVersion variable.
also note, you cannot use the wildcard '1.5.0*' in the call to isWebStartInstalled (which takes minimumVersion arg)
if fixed, this code would still not work as you want, since clients with 1.6.0 or later would sail straight thru and launch.
I suggest replacing isWebStartInstalled() with deployJava.versionCheck('1.5.0*') .
then on systems with the plugin installed, if no 1.5.0* version is installed, the latest 1.5.0_XX will be installed before launching the app.
(assuming the app has also <j2se version=1.5/> or equiv.)
on systems w/o plugins installed, the latest version of java will be installed, and it will be up to javaws auto download to get 1.5.0* version.
this could still have problems, especially on platforms not supporting the plugins (non-windows) , since code keeps checking for '1.5.0*', and installing only latest, so you would want to wrap install with something to prevent repeated attempts to install:
if (deployJava.versionCheck('1.6.0+') && !deployJava.isPluginInstalled()) {
---- don't do any install here - ---
/Andy

Similar Messages

  • Oracle Host String.

    I Installed oracle on my machine after my installation I forgot my 'host name' . I am able to login without host name . But I need this host name for cognos installtion.I gone through the net and and I alter my Host string to 'orcl' but I am Unable login.
    It's shows TNS Listner Error.
    And I have one more question also
    what is the diff b/w SID and Host string.
    Thanks,
    Mohana Krishana K
    Edited by: user12275872 on Mar 1, 2010 9:52 PM

    Hi,
    Host is the address of the server.
    Please check your tnsnames.ora file in your oracle_home->network->admin folder.
    there you will find something as
    HOST =Twinkle

  • Asking for host string

    Hi,
    I have downloaded the Oracle 9i personal edition on a Windows98 system. When I am trying to run the sqlplus.exe file, it asks me for User ID,Passww, Host string. What host string am I supposed to give? Its a standalone application that I want to run Oracle 9i as. Please guide me.
    Thank you.
    Srikanth Turaga
    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name
    - Filename
    - Date/Time
    - Browser + Version
    - O/S + Version
    - Error Msg

    SQL*Plus Issue:
    Right-click on the SQL*Plus short-cut that give you TNS error and see which executable it points to. Most probably this is the one in you newly installed Dev Suite directory.
    Next, Check the contents of TNSNAMES.ora file in the following directory:
    C:\DevSuiteHome_1\NETWORK\ADMIN
    (whichever drive/disk you installed Dev Suite in).
    This file must contain TNS entry of the database you intend to connect to using Dev Suite applications (Forms, Reports, SQL*Plus, etc).

  • HOW CAN I GET USERNAME,PASSWORD,HOST STRING?

    I have installed oracle 9i personal edition, when i tried to open sql plus, i was asked to fill username,password and host string. When i type anything it shows error message ora-12154.Is anyone can help me? Thanks

    The error you gave can appear for lots of reasons.
    You don't give any information about how the install
    went - did you check the logs for errors? Have you
    shut the machine down since you did the install?
    Are you actually running SQL*Plus on the same machine
    as the database? Is your database running? Can you
    connect using "/ as sysdba"? What hints that even
    a simple google search gives did you try?
    -- CJ

  • Host String Problem

    Hi everyone, i searched the forum and found same problem with me but i did not work for me. The problem is i cannot connect my sql plus. i enter my username and password then it asks me gor host string but when i type it and enter "ok" it says "TNS Listener does not currentl know of service requested in connect descriptor. i looked at my tnsnames.ora file and is exactly like this.
    # tnsnames.ora Network Configuration File: C:\oracle\product\10.2.0\db_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    CSE348 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = Canavar)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = cse348)
    So what shoul i type to connect sql plus?

    Given the tnsnames.ora content, the following needs to be entered for sqlplus in order to have it use that connection string in the file:
    sqlplus scott/tiger@CSE348As you have not qualified the alias with a domain, it will default to "+.world+" as far as I recall. If the default domain in your local sqlnet.ora differs, than that default will be used to find alias CSE348 in the local tnanmes.ora file. So make sure that you do not mix default and explicit domain names. Rather specify a default domain in sqlnet.ora and use the same domain for defining full qualified domain name TNS aliases in tnsnames.ora.
    As for the error - the Listener receives a connection request for a service called cse348 - and no such service has registered with it. You can check the known services of the listener using the "+lsnrctl services+" command on the server.
    Often in this case, it is easier to request a specific database instance using its system identifier, or SID. In which case you can change your connection string for the alias to use a SID as follows:
    CSE348 =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = Canavar)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SID = cse348)
      )This assumes that the SID is cse348. The default SID is for example orcl. SIDs like dev and prod are also often used.

  • Oracle 8i Lite: logging to sql plus - uid, password, host string - whats that

    If i install "Oracle 8i Lite" (just locally, not networked). There are two important things : "Navigator", and "SQL Plus". If in navigator, I create a local database called "xxx" (tables under 'system' user). Then if i need to query - i go to SQL Plus. Fine, but how do we log in - what is the "host string" ?.
    The login needs, Userid, Password, Host String. In some docs, it said the userid, password for 'system' account is 'system, manager' respectively. Anyways, now the host string , i had read the 'host string' will be like "@databasename", so I think for me, it will be "@xxx"
    But the way, I'm understing, i cant log, and SQL Plus says something "TNS: could not resolve service name". Maybe i have to something with that tnsnames.ora file....?
    Incase, you could give ANY information, kindly inform.
    Thanks
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Mulyadi Kurniawan ([email protected]):
    Host string usually refers to the host string that is stored in your TNSNAMES.ORA file. You can open TNSNAMES.ORA with a text editor.
    If you get "TNS: could not resolve service name", it's either you have not start the database or your configuration in TNSNAMES.ORA is wrong.<HR></BLOCKQUOTE>
    hi,
    iam getting the same error(the TNS thing)can you be a bit more explaining regarding how to solve the problem.
    thanks
    null

  • Password and host string

    Hi,
    Im trying to get the Oracle 8i for 2000 to run correctly. I did a download. Problem is getting pass the password screen. The host string is giving me trouble. What should go there? Any place where the password and host string info are stored for later retrieval?
    thanks,
    Cindy

    If you installed the default database then you should type in system as the user and manager for the password and ORCL as the host string (these are the defaults).
    The hoststring names (database aliases) would be in the tnsnames.ora file uder your Oracle_Home/network/admin directory
    If you login as system or a user that has DBA privileges, you can change passwords as you see fit
    syntax:
    alter user identified by somepassword;

  • Host String

    I've installed Oracle Forms 6i includingSQL Plus 8.0 on Win2000 server. no problem with user name and password but no Host string seems to work. Error message ORA-12203: TNS unable to connect.
    Any ideas what I should be using as the host string?
    Thanks

    Hi All ,
    thanks for u'r help I appreciate it,now i could install my orcale 9i properly,but now i have one more problem,after installing oracle,iam not able to install Microsoft visual studio,i got a setup error,that it can't create DCOM user account,have any one encountered such kind of problem,i've browsed the microsoft site,i could find that there would a problem installing Visual Studio when orcale is already installled,but couldn't resolve the problem.do i need to again uninstall oracle 9i???

  • [b]Listener problem while configuring host string through NET config[/b]

    Hi,
    I am unable to create host string through Net config. While testing with userid/password, the test does not succeed.
    The host string configured is known as PROCESS.
    Net config error message while testing the connection is as follows:
    "Connecting...ORA-12541: TNS:no listener
    The test did not succeed.
    Some of the information you provided may be incorrect.
    Press back to review the information provided for net service
    name, or Change Login to change username."
    Upon checking the status of listener from command prompt it gives following status:
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC0)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 9.2.0.1.0 - Produc
    tion
    Start Date 08-JAN-2003 16:25:08
    Uptime 0 days 16 hr. 9 min. 33 sec
    Trace Level off
    Security OFF
    SNMP OFF
    Listener Parameter File C:\orant\network\admin\listener.ora
    Listener Log File C:\orant\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC0ipc)))
    Long postings are being truncated to ~1 kB at this time.

    Did you check that the DB is up ? If not, then check it and, eventually, start it up.
    If yes, then open a DOS window, set your ORACLE_SID, connect to Sqlplus as sysdba and type :
    SQL> show parameter service
    what is the result ?

  • SqlPlus 8.0/host string

    Hi,
    I've download 8i lite, I'm a new user of oracle & I can't open sqlplus 8.0.
    a window ask me user and pass, I give "scott"
    and "tiger" but an host string is asked and I don't know the answer, I don't find it through the pdf file or through this forum.
    Sorry to be a begginer, does anybody can help me?
    Thanks. :)

    Hi,
    Please Check Ur Database Is In Open State.
    Put A Entry In TNSNAMES.ORA
    null

  • Oracle 8i host string

    When you start oracle 8i it ask for host string. Can somebody tell me what should be entered there if Oracle 8i personal edition is installed on a personal PC.
    What will be host string for oracle 8i enterprise edition. What will be management server name for Enterprise manager.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Mulyadi Kurniawan ([email protected]):
    Host string usually refers to the host string that is stored in your TNSNAMES.ORA file. You can open TNSNAMES.ORA with a text editor.
    If you get "TNS: could not resolve service name", it's either you have not start the database or your configuration in TNSNAMES.ORA is wrong.<HR></BLOCKQUOTE>
    hi,
    iam getting the same error(the TNS thing)can you be a bit more explaining regarding how to solve the problem.
    thanks
    null

  • Default SQLPlus host string

    I installed 9.0.1.1.1 on a Win2k PC with default setup using the Oracle Installer. Afterwards, I also installed the OEM on the same machine. For some reason, when I login to SQLPlus without specifying an Host String, SQLPLus always logins into the OEM instance, OEMREP. Does any one know where I can change the defaut Host String back to the original instance?

    You can argue that there is no such thing as a default username, password, and host string for Oracle.
    You can also potentially respond with instructions to try to log on as sysdba
    sqlplus /nolog
    connect / as sysdbaIf you are a member of the appropriate Oracle group you are now connected as user SYS. I do not consider this as a default user.
    You should create and grant appropriate privileges to application and DBA usernames.
    The default instance names for Oracle installed on Windows are XE for Express and ORCL for regular Oracle though this last can be changed.
    HTH -- Mark D Powell --

  • XCode: invalid host string: 'localhost'

    Hey! I'm trying to compile some C++ code in XCode. I'm getting this error: invalid host string: 'localhost'
    So I searched on the web. I found it was probably in error in hosts, so I checked it. But, my hosts was perfect! Nothing wrong with it! Here's my hosts file:
    # Host Database
    # localhost is used to configure the loopback interface
    # when the system is booting.  Do not change this entry.
    127.0.0.1       localhost
    255.255.255.255 broadcasthost
    ::1             localhost
    fe80::1%lo0     localhost
    Yup.

    I was running against the same problem on a run-time of xcode debug. Are you running gas mask? If so, I was simply under the remote file rather than the local in my settings.

  • Specifying host string at connecting time

    Hi everyone!!
    I have 2 systems in my house. Both the systems have Oracle 9i installed in the Windows 2000 environment.
    I am able to connect to the database without providing the Host String at the time of connecting on one system while on the other it raises a
    ORA-12560: TNS:protocol adapter error
    What do you think is the problem? Both the systems have the same Oracle services running.
    Please help. I think this would clarify some of my problems regarding how Oracle services run.
    Thak u all.

    Define a registry key LOCAL with value "my_connect_string" in the registry subtree ORACLE_HOME of your SQL client

  • Host string and new users

    Hi, I've just installed DevSuiteHome1, OraDb10g_home1, and Oracle Developer Suite - DevSuiteHome1 and will be creating forms for an assignment. I've managed to log in to SQL*Plus with: "/ as sysdba" and successfully created a new user with a password and created a table "student", what privileges should I give this user (currently DBA) to allow them to access simple forms?.
    When I log in to SQL*Plus I get in without entering a "Host String", do I need this? What is a Host String?
    Also, though I don't need the database name just yet, I'd like to know how to find it!
    Thanks for reading, I'm grateful for any help.
    Will.

    The more formal way of reading that is
    sqlplus user/password@service-information
    where service-information is somehow translated into a combination of 3 pieces of information
    1) how to find the host or computer where the database resides
    2) which port the listener is monitoring
    3) which service (commonly mistaken as database) to which the listener should provide a connection
    (A database, when 'running', has a default service that matches the database name.)
    If you are logged on the the same machine as the database, you can bypass the network and the listener by setting the ORACLE_SID and implying the 3 pieces of information.
    If you are remote, there are several ways of getting the 3 pieces. The most common is to use the TNSNAMES.ORA to translate the service-information alias into the needed information. The translation could also be stored in an LDAP database Using InstantClient you have added variations, such as 'supply the host name and assume the listener is monitoring port 1521 for one and only one database', or supplying the whole translation manually.

Maybe you are looking for