Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: How to get rid of XDB service in Oracle 9i
I could not get rid of XBD in an easy way, so I changed the port this way:
SQL> -- Change the HTTP/WEBDAV port from 8080 to 8081 SQL> call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(),
'/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()',8081))
/
SQL> commit;
SQL> exec dbms_xdb.cfg_refresh;
SQL> -- Verify the change SQL> set long 100000 SQL> set pagesize 1000 SQL> select dbms_xdb.cfg_get from dual;
"Maciek" <wegorkie_at_interia.pl> wrote in message
news:8ca4184b.0403300806.6495e3e4_at_posting.google.com...
> Hi,
>
> I am newbie in Oracle and I am really irritated that it got
> localhost's 8080 port with its XDB. When I invoke
> http://localhost:8080 i get login prompt and after logging onto sysdba
> I have list of files.
> I want to get rid of this service I don't need XML dbs or anything
> like that.
> I found some posts in usenet regarding the problem but they adviced to
> work on files that are missing in my 9i installation... ???
> I could also modify xdbconfig.xml but I cannot find it anywhere inside
> oracle directories????
>
> Can someone explain simply how to uninstall XDB or block it, or
> reconfigure it?
Received on Tue Mar 30 2004 - 11:03:02 CST