Oracle9i, which is included by default when you create a database
XDBFeatures. Once the database and listener are started,
Oracle
XDBThe HTTP service occupies port 8080, which is in conflict with default ports such as JBoss and tomcat. In addition to modifying tomcat, you can also modify
XDB.
Oracle
XDBIs not in the configuration file, but in the database. Modify
XDBThere are three methods for HTTP and FTP service ports:
1. Log On with sysOracle, Use dbms_xdb to modify port settings
SQL> -- change the HTTP/WebDAV port from 8080 to 8081
SQL> call dbms_xdb.cfg_update (updatexml (
2 dbms_xdb.mongo_get ()
3, '/xdbconfig/sysconfig/protocolconfig/httpconfig/HTTP-Port/text ()'
(4, 8081 ))
5/
Call completed.
SQL> -- change the ftp port from 2100 to 2111
SQL> call dbms_xdb.cfg_update (updatexml (
2 dbms_xdb.mongo_get ()
3, '/xdbconfig/sysconfig/protocolconfig/ftpconfig/ftp-Port/text ()'
(4, 2111 ))
5/
Call completed.
SQL> commit;
Commit complete.
SQL> exec dbms_xdb.mongo_refresh;
PL/SQL procedure successfully completed.
2. Use the OEM console and select database, XML database, and configuration. ChangeXDB.
3. Remove the database initialization parameter: dispatchers = '(Protocol = TCP) (Service =XDB) ', Will be disabledXDBHTTP and FTP services.