安装广播系统后,后续又修改服务器ip地址,会导致mp3文件播放不了的问题。
解决方法如下:
1、使用SecureCRT软件SSH登录服务器
2.依次输入以下指令修改服务器字段
su– postgres
psqlss3000i
select* from tbl_dsparams;
updatetbl_dsparams set value='xxx.xxx.xxx.xxx' where id=37;
3、重启Tomcat服务
按ctrl+d退出数据库目录或重新克隆会话,至root路径下,依次执行以下指令
cdSS3000-I/tomcat6/bin/
ps-ef|grep procp //查看保活进程
kill-9 2329 //杀掉进程
ps-ef|grep tomcat
kill-9 2065
./startup.sh
|