How to startup and install listener in oracle linux after intalling database ?

hi 
i am installing oracle database on  linux 6 and when its finishe i cant run sqlplus or i cant run dbca or netca ?
what i am doing after installataion oracle database with ruinInstallet (oui) ?
thanks

Hi,
you have to set environement variables $ORACLE_HOME and $PATH in user profile ( .bash_profile in your home directory). some think like this :
export ORACLE_HOME=/u01/app/oracle/product/11.2.3/db_1
export PATH=$ORACLE_HOME/bin:$PATH
after that you execute ths profile . .profile or reconnect to load the variables, you can then use netca,sqlplus or any other utilities in bin directory of your ORACLE_HOME

Similar Messages

  • How to make a port listen in Oracle Linux

    Guys,
    I need to make a port (8001) to LISTEN on my server for allowing another remote server to telnet to mine using this port.
    For example:
         root@remoteserver# telnet myserver 8001
    Please let me know how to do this.

    Thanks for the reply.
    I meant the same, opening the port for an application. Firewall is not running.
    I used Telnet just to check the port.
    Working node:
    [root@node1~]# netstat -antup | grep 8001
    tcp        0      0 ::ffff:34.36.134.150:8001   :::*                        LISTEN      37591/java
    tcp        0      0 ::ffff:34.36.134.150:8001   ::ffff:34.36.134.131:64801  ESTABLISHED 37591/java
    tcp        0      0 ::ffff:34.36.134.150:8001   ::ffff:34.36.134.131:64478  ESTABLISHED 37591/java
    [root@node1~]#
    Issue node:
    [root@node2~]# netstat -antup | grep 8001
    tcp        0      0 ::ffff:34.36.134.151:8001   ::ffff:34.36.134.132:7001   ESTABLISHED 6057/java
    [root@node2~]#

  • How to Deinstall And Install OEM again

    hi Experts,
    Can somebody pls explain me how to deinstall and install OEM. ????
    I can not view any options in OEM. it referes a incorret machine name.

    DBMS Direct ,
    As u mentioned emca didn't work for me.
    when I issued the command it gave me the following ...
    Oracle@DB1 $ emca -deconfig dbcontrol db -repos drop
    Incorrect usage:
    oracle.sysman.emcp.EMConfigAssistant [options] [list of parameters]
    Options:
    -a :configure for an ASM database
    -b :configure for automatic backup
    -c :configure a cluster database
    -e <node> :remove a node from the cluster
    -f <file> :specify the file name that contains parameter values
    -h :help
    -m :configure EM for a central agent
    -n <node> :add a new node to the cluster
    -r :skip creation of repository schema
    -s :silent mode (no user prompts
    -x <db> :deletion of a SID or DB
    -RMI_PORT <port> :specify the RMI port for DB Control
    -JMS_PORT <port> :specify the JMS port for DB Control
    -AGENT_PORT <port> :specify the EM agent port
    -DBCONSOLE_HTTP_PORT <port> :specify the DB Control HTTP port
    The script will prompt for any required data that is not specified in a configuration file. The script always prompts for all required passwords. If you use a configuration file, the file may contain any of the following specifications, as shown, with the specified values correctly filled in:
    And there is more to this msg.
    So I think manually droping sysman would work.
    So issuing only
    drop user sysman cascade;
    whould be enough ??? or do I have to do anything else ????
    And after that how do I recreate it ....???
    Is it using ,
    emca -deconfig dbcontrol db -repos create.
    or using some other way ????

  • How to Install Xvfb on oracle linux 6.5

    Dear,
    I wanted to run Autovue on oracle linux, so that needs the first run Xvfb.
    How can I install and run Xvfb o oracle Linux 6.5?
    Best regards,
    Saeed.

    If the problem is only to install Xvfb, you can do that doing the following:
    # yum list "*xvfb*"
    Available Packages
    xorg-x11-server-Xvfb.x86_64     1.15.0-22.el6   public_ol6_latest
    # yum install xorg-x11-server-Xvfb

  • How to download and install webutil in FORMS 10G 10.1.2.0.2

    Where i find all the step to
    how to download and install webutil in FORMS 10G 10.1.2.0.2
    i DON'T FIND NOTHING OF VERY GOOD TO FOLLOW !!!

    hi
    u do not need to install any webutil in R2 u just need to configure few things.
    please read the following notes and try to configure.
    How to get up and running with WebUtil 1.06 included with Oracle Developer Suite 10.1.2.0.2 on a win32 platform
    Solution
    Assuming a fresh "Complete" install of Oracle Developer Suite 10.1.2.0.2,
    here are steps to get a small test form running, using WebUtil 1.06.
    Note: [OraHome] is used as an alias for your real oDS ORACLE_HOME.
    Feel free to copy this note to a text editor, and do a global find/replace on
    [OraHome] with your actual value (no trailing slash). Then it is easy to
    copy/paste actual commands to be executed from the note copy.
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
      and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    2) Copy or move jacob.jar and jacob.dll
      [JacobStage] is the folder where you extracted Jacob, and will end in ...\jacob_18
         cd [JacobStage]
         copy jacob.jar [OraHome]\forms\java\.
         copy jacob.dll [OraHome]\forms\webutil\.
      The Jacob staging area is no longer needed, and may be deleted.
    3) Sign frmwebutil.jar and jacob.jar
      Open a DOS command prompt.
      Add [OraHome]\jdk\bin to the PATH:
         set PATH=[OraHome]\jdk\bin;%PATH%
      Sign the files, and check the output for success:
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\frmwebutil.jar
         [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\jacob.jar
    4) If you already have a schema in your RDBMS which contains the WebUtil stored code,
      you may skip this step. Otherwise,
      Create a schema to hold the WebUtil stored code, and privileges needed to
      connect and create a stored package. Schema name "WEBUTIL" is recommended
      for no reason other than consistency over the user base.
      Open [OraHome]\forms\create_webutil_db.sql in a text editor, and delete or comment
      out the EXIT statement, to be able to see whether the objects were created witout
      errors.
      Start SQL*Plus as SYSTEM, and issue:
         CREATE USER webutil IDENTIFIED BY [password]
         DEFAULT TABLESPACE users
         TEMPORARY TABLESPACE temp;
         GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
         CONNECT webutil/[password]@[connectstring]
         @[OraHome]\forms\create_webutil_db.sql
         -- Inspect SQL*Plus output for errors, and then
         CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
      Reconnect as SYSTEM, and issue:
         grant execute on webutil_db to public;
    5) Modify [OraHome]\forms\server\default.env, and append [OraHome]\jdk\jre\lib\rt.jar
      to the CLASSPATH entry.
    6) Start the OC4J instance
    7) Start Forms Builder and connect to a schema in the RDBMS used in step (4).
      Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
      It is important to generate the PLX, to avoid the FRM-40039 discussed in
      Note 303682.1
      If the PLX is not generated, the Webutil.pll library would have to be attached with
      full path information to all forms wishing to use WebUtil. This is NOT recommended.
    8) Create a new FMB.
      Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
      There is no need to Subclass the WebutilConfig object.
      Attach the Webutil.pll Library, and remove the path.
      Add an ON-LOGON trigger with the code
             NULL;
      to avoid having to connect to an RDBMS (optional).
      Create a new button on a new canvas, with the code
             show_webutil_information (TRUE);
      in a WHEN-BUTTON-PRESSED trigger.
      Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    9) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
      the "Application Server URL" is empty.
      Then append "?config=webutil" at the end, so you end up with a URL of the form
          http://server:port/forms/frmservlet?config=webutil
    10) Run your form.

  • How to get and install the new MSI Bluetooth Software Package 1.4.3.3.

    How to get and install the new MSI Bluetooth Software Package 1.4.3.3.
    This little FAQ will only cover the new version of MSI Bluetooth Software Package.
    First thing too do is unistall any older version of the MSI Bluetooth Software.
    Do this through the Add/Remove program applet in your control panel.
    There seams too be only through Live update you could get the new version of MSI Bluetooth Software Package.
    If you can't see any enter for MSI Bluetooth Software in the Live driver section of Live update then you have too enter the following too your registry.
    Create following code in Notepad and save it as MSILD.reg, then run the file.
    ;-->Code start
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\MSI\Drivers\MSI Bluetooth Software]
    "DrvSetup"="1"
    "Version"="1.4.2.10"
    ;-->Code end
    Rerun the Live update and hopefully you will now see a entry for MSI Bluetooth Software in Live driver section.
    Install the new version of MSI Bluetooth Software and reboot your computer. Even if the setup program doesnt told you too doit.
    After rebooting the computer you will see the Bluetooth icon in the taskbar. If it's Red then try too start the Bluetooth services by right click on the try icon and the only alternetiv there is.
    If the Bluetooth services is asking for a valid licens.dat then you should do the following.
    Surf to Jon's Bluetooth guide http://www.jonsguides.com./bluetooth/prepare.html and download the patcher from the link there.
    Unzip the the patcher and then run the BTWPatcher.exe program.
    Now the Bluetooth services will start and you will bee able too configure your own settings for the Bluetooth services.
    If nothing of this work you could try the complete Bluetooth solution at Jon's gudie and install the IBM version of the same program. I havent test this solution and will not do soo.

    I have the MS-6968 device and i want to use driver 1.4.x or 3.0.x. I found the driver 1.4.2.10 but i cannot find any WIDCOMMSecurity code.
    So, can anyone give me a link for BTWPatcher.exe???
    It cannot be found here (Jon's Bluetooth ) anymore.
    Thanks

  • How to create and install a toolbar to a browser using java

    Hi all,
    Can any one guide me about how to create and install toolbar to a browser using java ??
    please any one help me about this,i am not getting any idea about this..
    Thanks and Regards
    Sandesh S

    I doubt you can. Those browser toolbars are done by implementing to an API provided by the browser. That API, I don't believe, is provided via Java. But of course, that would be entirely up to the browser, not Java.

  • I'm trying to find the plugin for camera raw, but all I can find is the page with the cameras that are supported. But I don't find how to find and install the actual plugin. The end name is ARW

    I'm trying to find the plugin for camera raw, but all I can find is the page with the cameras that are supported. But I don't find how to find and install the actual plugin. The end name is ARW, and all I need is to find WHERE I can download it. Thanks.

    cr is installed by updating your app.  use help>update, or update manually
    pre cc updates:  http://www.adobe.com/downloads/updates/
    cc updates:  http://prodesigntools.com/adobe-cc-updates-direct-links-windows.html
    cc 2104 updates:  http://prodesigntools.com/adobe-cc-2014-updates-links-windows.html

  • How to activate and install office 365

    How to activate and install molp office 365 pro plus
    I have tried all the way round but finally ended up in a mess 
    kindly guide me the right procedure on how to get started 
     

    Hi Vikash,
    Learn complete instructions on How to install office 365 on your PC:
    http://office.microsoft.com/en-in/office365-suite-help/install-office-on-your-pc-or-mac-with-office-365-for-business-HA102822111.aspx
    Note: If you found our answer as helpful, then please remark it.
    Thanks
    Clark Kent

  • How to find and install right java for ECC6 intstallation on AIX5.3

    Hello
    I wander how to find and install right java for ECC6 intstallation on AIX5.3. I went thruroughly thru note 723909 and underlying 716927, 1008311 and 1039948 notes but I still do not understand.
    I guess I should logon to IBM site http://www.ibm.com/developerworks/java/jdk/aix/service.html
    where I can choose :
    " Java 1.4.2 64-bit "
    and then :
    "64-bit SDK 1.4.2 base images (at 1.4.2.0 level; in installp format) "->"Base SDK (required)
    Java14_64.sdk.tar  ((50001920)
    then I assume (on AIX ) I should "tar xvf Java14_64.sdk.tar".
    then I get extracted "Java14_64.sdk"
    Is this ok?
    I know on Linux(
    from IBM site I downloaded "IBMJava2-amd64-142.rpm"
    then I issued
    "rpm -i IBMJava2-amd64-142.rpm "
    and finally issued
    "export JAVA_HOME=/opt/IBMJava2-amd64-142")
    What in case of AIX5.3? Could you help me?

    I was told to use smitty (just I am not familiar with it). furdermore i do not hace read.me file. the ziped files are:
    Java14_64.ext
    -rw-rr 1  202 bin    371712 Mar  2  2010 Java14_64.license
    -rw-rr 1  202 bin      3072 Mar  2  2010 Java14_64.msg.ja_JP
    -rw-rr 1  202 bin      3072 Mar  2  2010 Java14_64.msg.Ja_JP
    -rw-rr 1  202 bin      3072 Mar  2  2010 Java14_64.msg.ko_KR
    -rw-rr 1  202 bin      3072 Mar  2  2010 Java14_64.msg.zh_CN
    -rw-rr 1  202 bin      3072 Mar  2  2010 Java14_64.msg.Zh_CN
    -rw-rr 1  202 bin      3072 Mar  2  2010 Java14_64.msg.zh_TW
    -rw-rr 1  202 bin      3072 Mar  2  2010 Java14_64.msg.Zh_TW
    -rw-rr 1  202 bin   4888576 Mar  2  2010 Java14_64.samples
    -rw-r----- 1 root root 67190784 Oct  4 09:53 Java14_64.sdk
    -rw-rr 1 root root 77370639 Nov 20 19:36 Java14_64.sdk.tar.gz
    -rw-r----- 1 root root 12612608 Oct  4 09:53 Java14_64.source

  • Hi, Just want to check how to download and install adobe

    Hi, Just want to check how to download and install adobe

    Download and Installation Help -
    https://helpx.adobe.com/download-install.html
    If you cannot find helpful information thru that link then you will have to be more specific, "adobe" is not a name of any specific software.

  • How to downlaod and Install Elements 12?

    How to downlaod and Install Elements 12?

    if you follow all 7 steps you can directly download a trial here:  http://prodesigntools.com/photoshop-elements-12-direct-download-links-premiere.html
    and activate with your serial number.
    if you have a problem downloading, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com

  • How to request and install a microsoft certificate through CA to Apple TV

    how to request and install a microsoft certificate through CA to Apple TV

    Apple TV does not have a browser and you can't install certificates on it
    if you are using mirror from a mac or a ios device its on them you needs to take actions
    when using mirror the Apple TV is just a remote display

  • How to download and install ringback tones on my 5s

    how to download and install ring back tones on my 5s

        I would love for you to have ring back tones on Iphone 5s! Here is where you can purchase and manage your ring back tones: http://vz.to/15Jto4u
    AmberF_VZW
    Follow us on Twitter @VZWSupport

  • Purchased photoshop elements 12 and premiere elements 12. downloaded and installed photoshop elements12 but cannot find how to download and install premiere elements 12

    After I purchased pselements 12 and premiere elements 12 I downloaded and installed pselements 12 but I cannot find how to download and install premiere elements 12 because that window has disappeared and I can't get back to it. How do I download and install premiere elements 12? where is it? how can I find it?

    rachif
    I am assuming that the purchase and download is from Adobe. You should find the information that you seek under My Orders at http://www.adobe.com after you sign in (as per John's link).
    However, if you have difficulties in going that route, please contact Adobe via Adobe Chat to discuss your order under the topic of Orders, Refunds, and Exchanges. To do that, click on the following link, and, when it opens, make sure that the topic is set at "Orders, Refunds, and Exchanges", click on the statement "Still need help? Contact us." to bring up the Adobe Chat.
    Contact Customer Care
    Please let us know the outcome.
    Thank you.
    ATR

Maybe you are looking for

  • Submit button on Android doesn't submit completed form via e-mail

    We've created a form in Adobe Acrobat Pro with a submit button using the "mailto:" command.  When we are in the android app and click the button, the e-mail script works fine, but it doesn't send the actual file, just a blank e-mail.  Any advice?  I'

  • Adobe Acrobat 9 Pro reinstall

    I am reinstalling AA9 Pro on newer computer.  It installs but will only give me 30 days of usage until I register it and tell what my previous version was.  I have my product key for my AA 9 Pro but I don't have a product key from a "previous version

  • Fonts problem with iTunes

    Hey guys I have a font problem with iTunes... I get some vertical lines instead of letters... How do i fix this problem? Thanks

  • Panasonic AG-DVX100b good or bad?

    Hey guys ok so i have tons of problems with my canon gl2... anyone out there DONT GET IT!! if your going with fcp for all i know 1. dropped frame rates alllll the time look at other peoples comments its true! 2. myn has a rewind issue.... its really

  • Why is the speaker connection wizzard wrong??

    I have creative T7900 speakers, which connect through the 4 different coloured cables. My speakers screwed up earlier so I thought I'd run through the speaker connection wizard again. Why does it only seem to think there are 3 cables? It ignores the