admin 发表于 2014-1-17 10:35:28

23 登录Teamcenter系统报错 IOException的解决方法

23登录Teamcenter系统报错 IOException的解决方法

当登录Teamcenter时候,发现teamcenter无法正常登录,报错IOException,通过查看log文件发现,无法连接数据库。
使用 install -ayt 发现错误,不能连接!


连接oracle数据库,直接连接oralce,发现报错ORA-28002,the password expire within 3days


正是这个密码过期导致了无法连接oracle数据库,teamcenter无法登录!

以下是设置密码为无限的过程,以及修改密码的过程!
启动cmd窗口
set oarcle_sid= (你的数据库实例)
sqlplus /nolog
conn infodba/infodba as sysdba;

-- 查看profile
select username,profile from dba_users;
--查看infodba的密码时间
select * from dba_profiles s where s.profile='DEFAULT' and s.resource_name='PASSEORD_LIMIT_TIME';
-- 更改密码期限
-- 这里设置为无限

ALTER PROFILE DEFAULT LIMIT PASSWORD_LIMIT_TIME UNLIMITED;
--修改密码

ALTER user infodba identified by infodba;

这样就可以了,连接oracle使用正常的infodba就不会报错了,登录teamcenter OK!










golonglee 发表于 2016-1-9 11:34:40

Teamcenter的ioException错误解决办法_百度经验http://jingyan.baidu.com/article/7c6fb4280f774580642c9019.html
页: [1]
查看完整版本: 23 登录Teamcenter系统报错 IOException的解决方法