Need help to configure Auto-start for the database

Hello

DB version: 11.2
OS: RHEL 5

Please help me
I want to configure the database and listener in auto-start during the startup process of the operating system.

Concerning

Step 1 of the oracle user

CD $ORACLE_HOME/bin
VI dbstart
VI dbshut

changed the

LISTENER_ORACLE_HOME = $1

TO

LISTENER_ORACLE_HOME = $ORACLE_HOME

Step-2 of the root user

VI /etc/init.d/dbora

#! / bin/sh

Oracle # these scripts runs the listner and Oracle database server.
#
# chkconfig: 345 81 81
Description #: this is the Oracle
#

# Define ORA_HOME as equivalent to the ORACLE_HOME
# from which you want to run dbstart and
# dbshut
# the value ORA_OWNER to the userid of the owner of the
# Oracle in ORA_HOME Server

ORACLE_HOME=/U01/app/Oracle/product/10.2.0/Db_1
ORA_OWNER = oracle

If [! f $ORACLE_HOME/bin/dbstart]
then
echo "Oracle startup: cannot start.
Output 1
FI

case '$1' in
'Start')

# Run Oracle databases:
# The following command assumes that the oracle connection will encourage not the
user # all values

known - $ORA_OWNER - c "start ORACLE_HOME/bin/lsnrctl $".
Su - $ORA_OWNER-c "$ORACLE_HOME/bin/dbstart.
;;
'stop')

# Stop the Oracle databases:
# The following command assumes that the oracle connection will encourage not the
user # all values

known - $ORA_OWNER - c "judgment of $ORACLE_HOME/bin/lsnrctl.
Su - $ORA_OWNER-c "$ORACLE_HOME/bin/dbshut.
;;
ESAC

Exit 0

Note: Please check your ORACLE_HOME

Step-3 of the root user

chmod 755 released
chkconfig released on

VI/etc/oratab
ORCL:/U01/app/Oracle/product/10.2.0/Db_1:Y

Step 4 Test the automatic start of the root user

stop /etc/init.d/Dbora
stop /etc/init.d/Dbora

Or

Restart the server

You can also view
http://www.Oracle-base.com/articles/Linux/automating-database-startup-and-shutdown-on-Linux.php
http://docs.Oracle.com/CD/E11882_01/server.112/e10839/strt_stp.htm#BABGDGHF

Tags: Database

Similar Questions

  • I need help to create a pilot for the Minolta CS and LS-100

    I'm doing a vi to communicate with a Minolta LS/CS-100 meters.  I need a LabView driver for them.  I have attached a few support files.  Can someone help me get a driver to perform simple measures?

    Hi Jallen,

    To do this, you need to make calls to DLLS in LabVIEW.  I have attached a document that will help you to start with the creation of your DLL calls.  This will allow you to communicate with your camera.

    http://digital.NI.com/public.nsf/allkb/DCB90714981A1F148625731E00797C33

    Kind regards

    Marcus

  • Need help to provide a page for the Oracle PeopleSoft HCM on internet

    Hello

    I need help to provide that a page of Oracle PeopleSoft HCM on internet for vacancies may be available for recruitment. How can I provide a Peoplesoft Web page?

    TKS

    Bruno will read

    Of Peoplebooks

    Access to external Sites

    External candidates, by definition, do not have the nicknames PeopleSoft. To allow external users access to a site, you put a link to the site on a location such as your public Web site. The site definition includes a field to set the URL of this external link.

    Deployed in this mode, the instance of PeopleSoft to be accessed by external users must have the appropriate security settings to allow users to bypass the access code. In other words, a user who clicks on the link is not presented with a PeopleSoft signon pages but is instead signed the using a user ID generic comments so that the user can be taken directly to the candidate Gateway.

    If an external candidate allows a more inactive candidate gateway session that the timeout you set, the default system behavior is to provide a link to the login page of PeopleSoft with the visible invited user ID.  According to your logic of password, the guest user ID might be locked if the applicant tries in vain to connect. For more security and ease of use, replace the code page to a page that displays an appropriate message.   For example, to display a message that the session has expired and provide a link back to the bridge of the candidate.

    Development of Sites

  • Need help with a query complex for the production database

    Hello again,

    I need your help once again, for a query how to show me how long each stage of production is by order.
    See examples of data and what I expect.
    Thank you all for your help.

    We use Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production

    Here the example data tables:
    CREATE      TABLE      TABLE_2
       
    (     "ORDER_NR"      VARCHAR2 (12)
    ,      "PRIORITY"      VARCHAR2 (2)
    ,      "WO_STEP"      VARCHAR2 (1)
    ,      "STEP_DATE"      DATE
    );
    
    CREATE      TABLE      TABLE_1
    (     "ORDER_NR"           VARCHAR2     (12) PRIMARY KEY
    ,      "PRIORITY"           VARCHAR2      (2)
    ,      "CREATE_DATE"      DATE
    ,     "ACT_STEP"          VARCHAR2     (2)
    ,     "STEP_DATE"          DATE
    ,     "EMPLOYEE"          VARCHAR2     (5)
    ,     "DESCRIPTION"     VARCHAR2     (20)
    );
    
    INSERT      INTO      TABLE_1      (ORDER_NR,               PRIORITY,      CREATE_DATE,                                                        ACT_STEP,     STEP_DATE,                                                            EMPLOYEE,     DESCRIPTION) 
                        VALUES           ('1KKA1T205634',     '12',          TO_DATE('10-FEB-13 10:00:00','DD-MON-RR HH24:MI:SS'),     'U',          TO_DATE('28-FEB-13 12:00:00','DD-MON-RR HH24:MI:SS'),     'W0010',     'CLEAN HOUSE');
    INSERT      INTO      TABLE_1      (ORDER_NR,               PRIORITY,     CREATE_DATE,                                                        ACT_STEP,     STEP_DATE,                                                            EMPLOYEE,     DESCRIPTION)
                        VALUES           ('1KKA1Z300612',     '12',          TO_DATE('08-FEB-13 14:00:00','DD-MON-RR HH24:MI:SS'),     'F',          TO_DATE('20-FEB-13 16:00:00','DD-MON-RR HH24:MI:SS'),     'K0052',     'REPAIR CAR');
    
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'A',          TO_DATE('12-FEB-13 13:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          '5',          TO_DATE('13-FEB-13 09:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'K',          TO_DATE('13-FEB-13 10:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          '5',          TO_DATE('13-FEB-13 11:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'K',          TO_DATE('13-FEB-13 12:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          '5',          TO_DATE('13-FEB-13 16:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'C',          TO_DATE('14-FEB-13 08:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'B',          TO_DATE('14-FEB-13 10:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'E',          TO_DATE('18-FEB-13 13:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'F',          TO_DATE('20-FEB-13 16:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'S',          TO_DATE('21-FEB-13 08:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'R',          TO_DATE('21-FEB-13 09:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'U',          TO_DATE('28-FEB-13 12:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'A',          TO_DATE('12-FEB-13 13:52:42','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          '5',          TO_DATE('13-FEB-13 09:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'K',          TO_DATE('13-FEB-13 10:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          '5',          TO_DATE('13-FEB-13 11:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'K',          TO_DATE('13-FEB-13 12:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          '5',          TO_DATE('13-FEB-13 16:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'C',          TO_DATE('14-FEB-13 08:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'B',          TO_DATE('14-FEB-13 10:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'E',          TO_DATE('18-FEB-13 13:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'F',          TO_DATE('20-FEB-13 16:00:00','DD-MON-RR HH24:MI:SS'));
    COMMIT;
    And here's what I expect of my request:
    SYSDATE     28.Feb.13 14:00                                                                                     
                                                                                              
    ORDER_NR     PRIORITYCREATE_DATE     STATUS     STATUS_DATE     DESCRIPTION     AGE_1     AGE_2     WAITNG     STEP_A     STEP_B     STEP_C     STEP_5     STEP_K     STEP_E     STEP_F     STEP_S     STEP_R     
    1KKA1T205634     12     10.Feb.13 10:00     U     28.Feb.13 12:00     CLEAN HOUSE     18,083     8,833     2,125     0,833     4,125     0,083     0,750     0,208     2,125     0,666     0,042     7,125     
    1KKA1Z300612     12     08.Feb.13 14:00     F     20.Feb.13 16:00     REPAIR CAR     20,000     16,042     2,125     0,833     4,125     0,083     0,750     0,208     2,125     0,666          
    And now the explanation for the result of the query:
    The AGE_1 is the difference in days between the "CREATE_DATE" and if EXSIST L'ETAPE 'U' then STEP_DATE or if the STEP 'U' is not found in TABLE_2 then it should show the difference in days between the "CREATE_DATE' and the 'SYSDATE.
    The AGE_2 is the difference in days between the STEP "A" STEP_DATE and IF EXSIST L'ETAPE 'R' then STEP_DATE or if the STEP 'R' is not in TABLE_2 then it should show the difference in days between the "CREATE_DATE' and the 'SYSDATE.
    The EXPECTATION is the difference in days between CREATE_DATE and STEP 'A' STEP_DATE
    The following columns indicate the days, how long the ORDER_NR remains in these TIMES, if an ORDER_NR comes in the same STEP should be calculated together more than once.
    If the ORDER_NR jump a step, it should show a zero in the specific field.

    I hope that my explanation is good enough, my English skills are far from good.

    Thank you for all your help.

    Hosts Reinhard W.

    Solomon Yakobson says:
    Just add the amounts:

    In fact, you could edit all CASES:

    with t2 as (
                select  t.*,
                        lead(step_date) over(partition by order_nr order by step_date) next_step_date
                  from  table_2 t
               )
    select  t1.*,
            nvl(
                max(
                    case t2.wo_step
                      when 'U' then t2.step_date
                    end
                   ),
               sysdate
              ) - t1.create_date age_1,
            nvl(
                max(
                    case t2.wo_step
                      when 'R' then t2.step_date
                    end
                   ),
               sysdate
              ) - t1.create_date age_2,
            sum(
                case
                  when t2.wo_step in ('B','5') then t2.next_step_date - t2.step_date
                end
               ) step_b_5,
            sum(
                case t2.wo_step
                  when 'C' then t2.next_step_date - t2.step_date
                end
               ) step_c,
            sum(
                case t2.wo_step
                  when 'K' then t2.next_step_date - t2.step_date
                end
               ) step_k,
            sum(
                case t2.wo_step
                  when 'E' then t2.next_step_date - t2.step_date
                end
               ) step_e,
            sum(
                case t2.wo_step
                  when 'F' then t2.next_step_date - t2.step_date
                end
               ) step_f,
            sum(
                case t2.wo_step
                  when 'S' then t2.next_step_date - t2.step_date
                end
               ) step_s,
            sum(
                case t2.wo_step
                  when 'R' then t2.next_step_date - t2.step_date
                end
               ) step_r
      from  table_1 t1,
            t2
      where t2.order_nr = t1.order_nr
      group by t1.order_nr,
               t1.priority,
               t1.create_date,
               t1.act_step,
               t1.step_date,
               t1.employee,
               t1.description
    /
    
    ORDER_NR     PR CREATE_DA AC STEP_DATE EMPLO DESCRIPTION      AGE_1      AGE_2   STEP_B_5     STEP_C  STEP_K     STEP_E     STEP_F        STEP_S     STEP_R
    ------------ -- --------- -- --------- ----- ----------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------
    1KKA1T205634 12 10-FEB-13 U  28-FEB-13 W0010 CLEAN HOUSE 18.0833333 10.9583333      4.875 .083333333 .208333333      2.125 .666666667 .041666667      7.125
    1KKA1Z300612 12 08-FEB-13 F  20-FEB-13 K0052 REPAIR CAR   44.252338  44.252338      4.875 .083333333 .208333333      2.125
    
    SQL>
    

    SY.

  • Need help to decode javascript tag for the release of HTML5.

    Hi all

    I'm working on a project in Adobe captivate 7 64 bit which consists of approximately 500 slides with most of the slides in text and image. The problem that I face is very unusual that I guess I'm the first to discover (according to my searches on google and the forums). So, after I publish my project the output works very well in html (local and online) BUT when I run index.html (i.e., out of HTML5) the course is not running and the screen is blank.

    After spending a week on the search online and using the strategy of trail and error, I was able to know that it was the text of the URL "F:\usrnew\purchase" placed in the middle of the course which caused damage of all. However, the url has been removed and the project has been submitted.

    After extra time, I discovered that the "\u" letter which is a JavaScript tag was causing the problem for the release of HTML5. I don't really know much to script, but discovered that the tag can be decoded using a programming strategy. Now, this is where my knowledge comes from a standby and needs a lift from you guys.

    Any ideas, help, sharing of knowledge would be very useful to me and all who could deal with this problem in the future.

    Looking forward for your point of view.

    Kind regards

    Mirza

    Voila! The problem is resolved.

    Solution: Change the single slash "------" to a double slash "\".

    See you soon,.

    Mirza

  • Need help finding a specific part for the predator

    I am looking for the metal clip that holds the 2280 m2 card into the top slot (for the 22110 m.2).  There must be somewhere, I don't know where.  Its killing me.

    Ok.  I'm not doubting you, but the only thing that I have to go is the official specification.  I don't have your computer model and I don't have an ssd M.2 22110 to see if it would fix it properly.

    In any case...

    Here is the official specification for G9_791 and G9_792 and B21

  • Need help to write a program for the acquisition of signals.

    Hello

    I need to write a program that will do the following:

    1 acquire two signals simulated,

    2. make 10 averages the signal,

    3. filter the signal,

    4. display the signal in its raw form and the power spectrum (fft),

    5. save the data using writing to the file vi

    I tried it for awhile, but there's always something does not... None of the experts LabVIEW here can help me?

    Thank you 1 million.

    -Deet

    No one here is going to do your homework for you. Please join what you have written so far and explain the specific problem that you are experiencing.

  • I need help to find my password for the certificate to sign a document

    Anyone know how I can access my password certificate to sign a document to adobe acrobat?

    Hey patriciav41001663,

    Which version of reader you use?

    In MS Reader, simply click on the Tools tab and click tool certificates to digitally sign a document.

    If you use reader XI, then see following link KB doc on the use of digital signatures:

    Player help | Sign a PDF

    If you already have one, so we cannot provide you with information about your password.

    Please make sure that when you get a certificate that is encrypted password, do you remember the password you may need several times.

    I would like to know if it is useful for you.

    Kind regards

    Ana Maria

  • Need help to create a Script for the labelling of Finder of Indesign files

    Try to find a way to have a script run in InDesign CS4, who tagged a RED text file once it's been imported into InDesign.

    Import multiple text files in an InDesign template. Since there are several text files in the same folder, it must somehow 'delineate' that we have imported this file and move to the next import. I created a 'service' with a keyboard shortcut Automator to label the Red file in the finder, but it would be great if we could have this occurs automatically after we imported in InDesign.

    If import us the text wrong by accident and it gets missed in fermentation, it costs us a lot of money with the printer.

    Thanks for all the ideas.

    Jim

    At its heart, it's what you want to do.

    tell application "Adobe InDesign CS4"
         set placeFile to choose file
         tell active document
              tell selection
                   --Assumes you have preselected the picture or textbox to place file in
                   place placeFile
              end tell
         end tell
    end tell
    tell application "Finder"
         set label index of placeFile to 2
    end tell
    

    You can expand on it pretty easily. The script for InDesign dictionary must be in the Library palette in the Applescript editor and the docs for Applescript are all online.

    If you need further assistance, you may wish to ask someone to write a complete script for you to spec for real moneyz.

    Best o ' luck!

    Eric.

  • How to disable auto-start for the virtual machine at the start of merger?

    Hi all

    I use Fusion 2.0.4 to run different OSs and have 4 different virtual machines that are installed. But whenever I start the merger, regardless of the previous state when I stopped him, he starts a specific virtual machine. How to avoid this? I want to start just merge and then choose which machine to start.

    TIA.

    Hello

    Welcome to the VMware Forums!

    In the virtual machine library, there is a star in the list of your virtual machines that you can click and she acts as a toggle to start the virtual machine on the opening of Fusion.

    It is somewhat a weird UI design choice, don't know me either until someone reminded last week.

    --

    Wil

    _____________________________________________________

    Visit VMware developers at http://www.vi-toolkit.com wiki

  • All my photos are displayed such as BW because somehow I saved a preset to quickly develop and it records in BW.  This is for all of my photos.  Individually, I can cancel their but did need help how to get rid of the pre-selection, so he's going to defau

    All my photos are displayed such as BW because somehow I saved a preset to quickly develop and it records in BW.  This is for all of my photos.  Individually, I can cancel their but need help how to get rid of the preset then all photos of goes to Default or in the shot. Thank you

    Go to the develop module and highlight all the images in the film at the bottom of the screen. Enable automatic synchronization, and then click the reset button. To reset all the images in your camera default settings.

  • My printer is configured to start when the computer turns on. I want to reconfigure it so that it does not turn

    My printer is configured to start when the computer turns on.  I want to reconfigure it so that it won't turn.  I know this is probably a simple change, but I can't find the path anywhere.  Any help?

    I guess you do NOT mean that you have both printer and computer plugged into the same power strip and both are turn on when you turn on the power strip.

    As nearly as I can determine the rather thin material in the Guide for the Dell P713w user, probably have enabled "Eco-Mode" or the mode 'sleep '.  See page 19 of the User Guide (if you don't have it, download it here: http://support.dell.com/support/edocs/systems/PRN_P713w/en/index.htm).

    When this feature is enabled, the printer goes into mode low power when it has been idle for a while.  When the computer is off, the printer is by definition inactive and so will go to low power, shortly after that the computer is turned off.  When the computer is turned on, it detects the presence of the printer and connects to the printer.  Apparently, the printer interprets this string as the "no-idle" and out of his low-power mode, which appears as if it is "turn on."

    In addition, this printer performs an automatic maintenance cycle every week if it is plugged into a power outlet. It will briefly exit Power Saver mode or turn on temporarily if it is disabled.

    At least one of the lights on the printer flashes power on and off when you think that the printer is turned off?  If so, it is in energy saving mode.

    Of course, I may be totally wrong, but it seems to me if you actually turn off the printer by pressing the button on / off on screen, he should not be able to auto (except once / week maintenance cycle).  From the Manual:

    Note: When the printer is turned on, press [power] to switch to the power saving mode. Press and hold [power] for 3 seconds to turn off the printer.

  • Configure Manager node for the two areas in weblogic

    Hi friends,

    I'm kinda new to weblogic. I need help to configure nodemanager to two areas.

    I created two areas

    1 Classicdomain

    2 RPMdomain

    For classic field, I created the machine and all the server has added to this machine.

    MachineName: localmachine

    Port: 5556

    Plain

    For RPMdomain I created the machine with the same name and the port and all servers added to this machine.

    I registered both server using nmroll().

    First domain has been configured with nodemanager.

    In the second area, I am not able to start a stop managed server via the console.

    Could someone please let me know how to configure the nodemanager.

    Kind regards

    Prates

    Are able to launch those instances successfully from the command line using the command startManagedWeblogic.sh? Once you have started it, try stopping through the node Manager and then start it upward.

    Also, do you have JSSE enabled in your case and/or disabled hostname verification? These errors indicate fundamentally flawed SSL handshakes with the node Manager.

  • Debugging - need help with configuration

    I also posted this in advanced by accident...

    I need help to my local development for CFBuilder debugging machine configuration. Developing CF applications is configured correctly, but I have problems configuring settings for debugging for CFBuilder/Eclipse. CFBuilder is installed and connected to RDS, and CF administrator is configured to debug level line. I'm running Windows 7 x 64 with ColdFusion 9 (using IIS).

    All my projects are in my "C:\Dev" folder, and each project contains a folder "www", which is the root of the web project. So, I have my projects organized like this:

    C:\Dev

    TestSite

    design

    docs

    www <-web root folder

    , I have created a ColdFusion project and he mapped directly to the folder root 'www '. In IIS, the web root folder is mapped via a virtual directory under the web site default and is accessible from "http://127.0.0.1/testsite"" "

    I have configured my RDS server that works correctly, so I can see the databases on the server. Nice. I also set up a server in the list of servers in the perspective of coldfusion and imported directly from my RDS server settings. It has the same name as my RDS Server, which is 'Server RDS Local.' I also added a URL prefix for "testsite" which is mapped to the local path: (C:\Dev\TestSite\www) and "http://127.0.0.1 \testsite. And finally, in Debug maps (preferences window), I said 'Server RDS Local.'

    Everything seems to be installed, but I can not debug. Here's what happens:

    Of the ColdFusion perspective, I click with the right button on index.cfm and select "Debug-> ColdFusion Application" the first time I do it, it switches on the ColdFusion debugging Perspective and loads of " " http://Homepage/ 'and then nothing seems to work. On the debugging tab, it shows me that he has created a new launch for my project as follows:

    TestSite

    Local RDS Server

    Model of ColdFusion

    I see my breakpoint in my breakpoints tab. But I can't seem to get any further. I can't find a way to run at my breakpoint. The home page for the current debugging session is "http://homepage/" which is something I don't understand. How CFBuilder go to the correct home page for the debug session? Maybe that's the key of.

    Hello

    Please right click on the project, and you will see an option "set the URL prefix. Allows to set the URL of your project.

    Thank you!

    Bhakti

  • I need help to install adobe flash for my G5 mac

    I need help to install adobe flash for my MAC OS X 10.4.11, I visited site and its telling me to upgrade my adobe flash, I really need help.

    Flash Player should be installed ONLY from the Adobe Web site.

    Here you can check which version of Flash player you have actually installed: http://kb2.adobe.com/cps/155/tn_15507.html

    You can check here: http://www.adobe.com/products/flash/about/ to see what version you need to install to your Mac and OS. You must first uninstall any old version of Flash Player using uninstaller from here (make sure you use the right pair!):

    http://kb2.Adobe.com/CPS/909/cpsid_90906.html

    and also that you follow the instructions carefully, as all applications (including Safari) closed first before installing. It is strongly recommended that you perform a permissions repair after installing anything from Adobe.

    After installation, restart your Mac and restart Safari, then in Safari/security preferences enable "enable Plugins".

Maybe you are looking for

  • Duplication of images

    I just bought lenovo laptop Z570. Configuration: i5, 4 GB ram, I GB nvidia, dos mode... Bit installed windows 7 ultimate 32... installed all the drivers including Intel graphics & nvidia graphics... What bothers me is that images of other part of the

  • Can I download photos sent to me by a person on a CD from my computer that works with windows Vista

    Someone sent me photos to my computer and I want to download on a CD so that I can bring to a drugsstore and print. My operating system is Vista. How can I do this? Thanks for your help.

  • Consistent black dots on printed

    Hi guys,. I use the HP Laserjet Pro 200 m251nw. The problem is that I get those black dots on the print in consistent locations on the image. I tried everything I could think of to ease the problem. I changed the type of paper to take into account th

  • (Redirected) for inspiron 17 wireless printer

    I bought a new Inspiron 17 windows 8.1 that does not fit wireless to my allinone dell968. Can you can confirm that the C1660w is the Inspiron wireless? Please confirm on [Admin note: email address removed in accordance with the TOU strategy.] TD. Tha

  • Problem with BasicEditField and predictive text

    What can I do for remove predictive text in a BasicEditField programmatically, as the search for address book entry? I think that I can't do with the code, allowing only multitap in the context menu, but the user has seen the AddressBook and want the