oracle 10 TNSLSNR.exe 占用8080端口修改方法

oracle 10服务一启动 TNSLSNR.exe 会占用8080端口,这时,需要改一下端口:

用oracle提供的包:
-- 把HTTP/WEBDAV端口从8080改到8081
SQL> call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(),
'/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()',8081))

/

-- 把FTP端口从2100改到2111
SQL> call dbms_xdb.cfg_update(updateXML(dbms_xdb.cfg_get(),
'/xdbconfig/sysconfig/protocolconfig/ftpconfig/ftp-port/text()',2111))

/
SQL> commit;
SQL> exec dbms_xdb.cfg_refresh;
-- 检查修改是否已经成功
SQL> select dbms_xdb.cfg_get from dual;

转自:http://qingfeng825.iteye.com/blog/599126

你可能感兴趣的:(oracle,sql,Blog)