Registering sunone5.2 instance on dscc7 console thru command line

Hi,
We migrated our existing sunone 5.2 server to new ODSEE11g servers,
I was successfully able to register all the 11g -Instances in DSCC using the "./dsccreg add-server" command, the reason I used ./dsccreg command was because some how our console wasn't able to take the credential for registering,
Is there any way/command (apart from console) by which I can register my 5.2 Instance on DSCC, we have set up the replication, apart from 5.2-Instance all other 11g Instances are registered under DSCC.
Thanks,
Kiran.

I don't believe it's possible to fully register 5.2 on DSCC because DSCC relies heavily on Cacao to communicate from the DSCC to the DS & DS 5.2 does not have support for Cacao.
The best I've seen it do is to show the 5.2 server in the console when you have a replication agreement, but I haven't been able to get it to register due to Cacao not being installed.
Also we are in the same boat as you with having 5.2 & 11g running simultaneously. I'm curious if you could share any or your setup.
So far I've been able to get 11g & 5.2 replicating (multi-master) to each other both ways. Things seem to be working fine, but I have thus far not been able to work out a way to get "passwordretrycount" to replicate. I'm currently looking at writing a script to do this, but haven't decided on the best way to do it.
Are there any issues you have run across? or anything you've been able to tackle that you can share?

Similar Messages

  • Web Application Status thru Command Line!

    Hi,
    How do i find the status of web application thru command line?
    I dont find a direct and easy way to get to know the status of a web application. In websphere it was straight forward. Any help from BEA team would be really appreciated
    Regards,
    C R baradwaj

    Hi Satya Ghattu,
    We have a requirement wherein we wanted to manage the start and stop of web application without using the weblogic server console.
    If I stop the web application from the console it shows the web application status as unavailable. I want to retrieve the status of the web application that is shown in the console from a command line utility or thru a java program.
    Any sample program or a command line utility will be very very helpful.
    Waiting for your earlier response. I understand from other source of information that WLST is the way to go. If I can get some source code for the same will be REALLY appreciated.
    Many Thanks in Advance,
    C R Baradwaj

  • Starting managed servers from admin console vs. command line

    Will the arguments I enter in the "Arguments" section of the "Server start" admin console page also be used if I start the managed server from the command line using startManagedWeblogic.sh?
    And conversely, will changes I make to the scripts take effect when I start the server from the admin console?

    No,
    the arguments that you set thru Console GUI are effective when Node manager start your server.
    Ammar Sajdi

  • ERR file produced thru command line compile

    I'm trying to compile Oracle6 and Oracle9i forms thru the command line. Fmx files are created but so are err files. Upon inspection of the err files, it just states that there are no compilation errors. So this means that the fmx files are created correctly.
    Is there a way for the Oracle6 form compiler (ifcmp60.exe) and the Oracle9i form compiler (ifcmp90.exe) to suppress the creation of err files if there are no compilation errors ?
    thanks.

    No they will always be created. To check if there is a error with the compile you should check the DOS %ERRORLEVEL% value and if that indicates a non zero value then look at the .err file.

  • Deploy an EAR file thru command line?

    I have been able to deploy the Petstore.ear file from
    the 10G AS Deploy EAR file option in the Server admin console.
    Now how do I to run this ear via the command line ?
    Any suggestions please?

    In ias9041 enterprise, I do
    $IAS_HOME/dcm/bin/dcmctl deployapplication -a myapp -f /root/myapp.ear -co home
    $IAS_HOME/dcm/bin/dcmctl redeployapplication -a myapp -f /root/myapp.ear -co home
    $IAS_HOME/dcm/bin/dcmctl undeployapplication -a myapp -co home
    I don't use the OEM at all. I do everything in command line with dcmctl and opmnctl. Read oracle's doc for more info.
    Ken

  • Schedule workbooks thru command line

    hi,
    how do we schedule workbooks thru unix command line?
    Thanks

    Hi,
    Well you can use windows task manager or another third party scheduler to run Discoverer exports on a windows workstation. You can search this site for information on how to do this.
    You can then use a unix command to send the details of the workbook to the workstation. One way to do this would be for the script running on the windows workstation to obtain the list of workbooks, worksheets, parameters etc that need to be scheduled from a custom database table. A unix command could then be used to add rows to the table which the workstation would then read and run the exports.
    How you do this depends on what output you want to generate and how you want to deliver that output to the users. You can find an article on my web site (www.cabotconsulting.co.uk) that describes how to schedule Discoverer reports using the Applications concurrent manager. This method also uses a custom table to hold the reports to be scheduled.
    Rod West

  • Executing system command thru command line by passing it to a server

    Hello,
    I would like to know if there is any way by which I can call a system command through a java program . This system command takes parameters. If yes then how do i pass these paramaeters. This program will be called thru a sheel scripts and the parameters may vary...

    If I just look at the question in your post, I would say the answer is to call Runtime.getRuntime().exec("the system command"). But the title of the post mentioned passing it to a server; I won't attempt to answer that without knowing what it's all about.

  • Adding rights to forms programmically or thru command line

    We have the reader extension 7.0 and it comes with the web interface to add rights one file at a time. I checked the API and still not sure where to start. If somebody can shed more light I'll appreciate it. Also do I need other components to develop API.. we host our reader extension in Solaris 10. Many thanks.

    You can use the Java API to do it. See the developer_guide.pdf and api_reference.pdf that comes with the product.
    Chris
    Adobe Enterprise Developer Support

  • Passing user defined parameters in oracle reports thru command line

    Hi All
    We are currently using Reports 6i with Oracle 10g 10.2.0.4.0
    I would like to know that is it possible to pass user defined parameters values while calling report from command line.
    For Example: I am using following coding to call report from command line.
    for /f "tokens=1-3 delims=/ " %%a in ('date /t mm/dd/yyyy -1') do (
    set mm=%%b
    set dd=%%a
    set yyyy=%%c)
    rwrun60 report=c:\reports\banks.rdf userid=express/test@test_rs2 destype=FILE desname=c:\reports\banks%dd%%mm%%yyyy%.pdf desformat=PDF BACKGROUND=NO BATCH=YES
    The report contains some user defined parameter which is using in where condition of reqport query.
    Select * from banks
    where id = :Bank_ID
    Now I want to Pass value for :Bank_Id from command line (like we pass parameter list while calling report with run_product), how it is possible?
    Thanks
    Hassan

    Hi guys
    Fortunately I am able to perform the required task as I just added the report parameter field as follows:
    rwrun60 report=c:\reports\banks.rdf userid=express/test@test_rs2 destype=FILE desname=c:\reports\banks%dd%%mm%%yyyy%%h%%mi%%ss%%ts%.pdf desformat=PDF BACKGROUND=NO BATCH=YES ERRFILE=c:\reports\error.log LOGFILE=c:\reports\joblog.log bank_id='MCB'
    bank_id is the report parameter using in where clause.
    Regards,
    Hassan

  • MS Access to oracle 10g Migration thru command line/script?

    Hi,
    Is there a command line for executing OWMB?..One of the customers currently using multiple databases of Access DB are interested in migrating to Oracle but they want the migration process to be very simple...For ex: On the click of a button or if there is something like silent mode migration through some command..
    Any help is greatly appreciated.
    Thanks,
    Veena

    Hi Veena,
    There's no command line or silent mode migration facility to run the workbench.
    However, the workbench does that have capability of migrating multiple MDB files in the one operation. Using the Exporter Tool for MS Access, which is shipped as part of the OMWB install, the user can select multiple MDB files to export. For each exported MDB file, an associated XML file is generated by the Exporter tool, which contains the database schema information for the MS Access database. The user can then load up all of these XML files, via a wizard, into the workbench, and carry out their migration. The ability to export & migrate multiple database in the one operation should greatly reduce the customer's migration time.
    I hope this helps.
    Regards,
    Hilary

  • Changing security option of admin server thru command line

    Dear All,
    As you can understand , we have accidently turned on SSL security =on on the admin server and we need help to turn it off through command. I will really appreciate if someone can help on this....

    Hi All,
    Thanks for your replies. I have managed to start the server without token. Now whenever I click or try to configure through GUI e.. "Secuirty: Request new certificate" or "Edit listen socket from preferences" . I am getting HTTP: 500 error.
    The page cannot be displayed
    There is a problem with the page you are trying to reach and it cannot be displayed.
    Please try the following:
    Open the vus304:8888 home page, and then look for links to the information you want.
    Click the Refresh button, or try again later.
    Click Search to look for information on the Internet.
    You can also see a list of related sites.
    HTTP 500 - Internal server error
    Internet Explorer
    And on ERROR log files says
    [15/Aug/2005:14:57:19] failure (14809): for host xxxx trying to GET /https-admserv/bin/security, cgi_scan_headers reports: the CGI program /opt/iplanet/servers/bin/https/admin/bin/security did not produce a valid header (program terminated without a valid CGI header. Check for core dump or other abnormal termination)
    [15/Aug/2005:15:11:03] failure (14809): Internal error: Unexpected error condition thrown (java.lang.StackOverflowError,no description), stack: java.lang.StackOverflowError
    Thanks in Advance
    Regards

  • Adding Views/Folders thru command line

    Hi --
    I am just wondering whether i can add views and create folders on those views from command line for a business area.
    Any ideas?
    Thanks
    Anil Chada

    Have you checked the Java Command line utility. It has lot of administration commands.
    regards
    http://www.infocaptor.com <--- Create your own intelligence

  • Why when I register a new instance of app ias6, the File - New - Server... has no response

    Why when I register a new instance of app ias6, the File -> New -> Server... has no response

    Contact iTunes support : http://www.apple.com/support/itunes/contact/

  • Delete Instances in BPEL console

    HI
    I am using Oracle SOA suite 10.1.3.1.0. So I will be having the Oracle lite as the dehydration store.
    I Have around 6400 instances in my BPEL console.
    What will happen when the number of instances are increasing.
    I am using a BPEL process to read xml and add data to SQL server database.
    When I deployed this process it was running properly. But now it is thrwoing the exceptions saying that the XPATH expression is failed.
    But when I process the same file it is not throwing any exceptions. Is this somewhere related to number of instances in the BPEL console??
    is there anyway to recreate the oracle lite database tables?
    Is there any way I can delete all the instances on a periodic basic without using another process or coding??
    Thanks
    V Kumar

    Well I have tried this crazy idea of using Oracle Lite with huge number of instance.
    I did this in performance test environment, not in Production.
    I could pump in huge number of transactions, and surprisingly Olite was able to take that.
    But the real bolt came when I tried to use "Purge All Instances" from BPEL console.
    The whole Olite crashed.
    But this was way back in the first version of BPEL and in the GA version of it.
    Never tried this in any version after that.
    Every Little Helps
    Kalidass Mookkaiah
    http://oraclebpelindepth.blogspot.com/

  • Error: Registering remote JRun instance in CF9/Windows Server 2008

    Hello,
    We are upgrading our dev/qa/uat environments to a new set of servers (2). CF9.01 with the latest patches is installed fresh on both servers, which are running Server 2008/IIS7. I created jrun instance dev01 and dev02 on each server, respectively. The plan was to let the CISCO load balancer manage the load between the two boxes, and to then share JRun sessions between the boxes so that we could failover anytime during the day if need be. Whenever I try to register a remote instance I get the following error:
    Variable ORGSPECDIR is undefined.
    The error occurred in serverlist.cfm: line 360
    Called from serverlist.cfm: line 244
    Called from serverlist.cfm: line 193
    Called from serverlist.cfm: line 182
    Called from serverlist.cfm: line 47
    Called from serverlist.cfm: line 1
    Called from index.cfm: line 197
    Called from index.cfm: line 1
    -1 : Unable to display error's location in a CFML template.
    Resources: Check the ColdFusion documentation to verify that you are using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser 
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.10) Gecko/20100914 Firefox/3.6.10
    Remote Address 
    107.3.11.73
    Referrer 
    http://devweb06/CFIDE/administrator/entman/addserver.cfm?servertype=addremote
    Date/Time 
    12-Oct-10 01:16 PM
    Stack Trace
    at  cfserverlist2ecfm1631918553._factor5(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrato r\entman\serverlist.cfm:360)       at  cfserverlist2ecfm1631918553._factor6(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrato r\entman\serverlist.cfm:244)       at  cfserverlist2ecfm1631918553._factor7(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrato r\entman\serverlist.cfm:193)       at  cfserverlist2ecfm1631918553._factor14(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrat or\entman\serverlist.cfm:182)       at  cfserverlist2ecfm1631918553._factor15(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrat or\entman\serverlist.cfm:47)       at  cfserverlist2ecfm1631918553.runPage(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrator \entman\serverlist.cfm:1)       at  cfindex2ecfm1563785181._factor12(E:\cf9_final\cfusion\wwwroot\CFIDE\administrator\entman\ index.cfm:197)       at  cfindex2ecfm1563785181.runPage(E:\cf9_final\cfusion\wwwroot\CFIDE\administrator\entman\in dex.cfm:1)                  
    coldfusion.runtime.UndefinedVariableException: Variable ORGSPECDIR is undefined.
         at coldfusion.runtime.CfJspPage._get(CfJspPage.java:377)
         at coldfusion.runtime.CfJspPage._get(CfJspPage.java:339)
         at coldfusion.runtime.CfJspPage._autoscalarize(CfJspPage.java:1447)
         at cfserverlist2ecfm1631918553._factor5(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrator\entman\serverlist.cfm:360)
         at cfserverlist2ecfm1631918553._factor6(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrator\entman\serverlist.cfm:244)
         at cfserverlist2ecfm1631918553._factor7(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrator\entman\serverlist.cfm:193)
         at cfserverlist2ecfm1631918553._factor14(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrator\entman\serverlist.cfm:182)
         at cfserverlist2ecfm1631918553._factor15(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrator\entman\serverlist.cfm:47)
         at cfserverlist2ecfm1631918553.runPage(E:\cf9_updates_rc\cfusion\wwwroot\CFIDE\administrator\entman\serverlist.cfm:1)
         at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:231)
         at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:416)
         at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2722)
         at cfindex2ecfm1563785181._factor12(E:\cf9_final\cfusion\wwwroot\CFIDE\administrator\entman\index.cfm:197)
         at cfindex2ecfm1563785181.runPage(E:\cf9_final\cfusion\wwwroot\CFIDE\administrator\entman\index.cfm:1)
         at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:231)
         at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:416)
         at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
         at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:381)
         at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
         at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
         at coldfusion.filter.PathFilter.invoke(PathFilter.java:94)
         at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
         at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:79)
         at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
         at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
         at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
         at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
         at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
         at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)
         at coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:126)
         at coldfusion.CfmServlet.service(CfmServlet.java:200)
         at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
         at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
         at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
         at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
         at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
         at jrun.servlet.FilterChain.service(FilterChain.java:101)
         at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
         at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
         at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
         at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
         at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
         at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
         at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Now, from either of the 2008 servers I CAN register a remote JRun instance that resides on a Server 2003 box. If I go to the Server 2003 box and try to register an instance from either one of the 2008 servers I get the same error as above, so it is definitely specific to Windows 2008 server.
    Any help would be greatly appreciated. I really don't want to think about storing sessions in a db but want to have that high availability/flexibility at anytime.
    Regards,
    Gary

    Hi Gary, this was a bug in CF 9.0.1. We've issued a hotfix fo it:
    http://kb2.adobe.com/cps/886/cpsid_88660.html

Maybe you are looking for

  • CIN errors

    Hi All, I am facing following problems in CIN, 1) During creation of Subcontracting challan, system is giving an error message as "Please specify the no of line items for subcontracting challan". I have already maintained the no of EI in subcontracti

  • Can't load Yosemite into IMAC. Get message "try again.

    I tried to move Yosemite into my iMac. The installing program  always hit a dead end and the message said" try again."  I can't get anything execept the"try again" message.

  • Question to CL_XML_DOCUMENT: CREATE_WITH_DATA

    Hi colleagues, i use CL_XML_DOCUMENT: CREATE_WITH_DATA to create a XML file. This works fine, but there is one thing that I would like to change: The created XML has the following structure:   <?xml version="1.0" ?> - <DATA> - <item>   <KEY>ABC</KEY>

  • Showing Fields

    please see this image: http://i1104.photobucket.com/albums/h336/809836724/sd/columns.jpg I am using SE16 on this. How can I make the columns (with DATA) appear? How to choose those columns (with data) without manually checking each column? thanks.

  • SCCM 2012 R2 - Software Update Point

    I have two domains, one where the site server (SCCM) will be installed home office,  and then another untrusted domain Management.  This server will have site roles, SUP, and some others. I want to create a site system server with DP, MP in the untru