) Modify the Oracle9i 8080 port.

Source: Internet
Author: User
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.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.