Difference between revisions of "Knowledge:Migration from 6.2.10 to 6.2.11"

From OpenKM Documentation
Jump to: navigation, search
m
 
(7 intermediate revisions by the same user not shown)
Line 21: Line 21:
 
-- Expand column
 
-- Expand column
 
alter table OKM_PENDING_TASK modify PTK_PARAMS varchar(1024);
 
alter table OKM_PENDING_TASK modify PTK_PARAMS varchar(1024);
 +
</source>
 +
 +
'''PostgreSQL'''
 +
<source lang="sql">
 +
-- Describe table
 +
select column_name, udt_name, character_maximum_length from INFORMATION_SCHEMA.COLUMNS where table_name = 'okm_pending_task';
 +
 +
-- Expand column
 +
alter table OKM_PENDING_TASK alter column PTK_PARAMS type varchar(1024);
 +
</source>
 +
 +
'''Oracle'''
 +
<source lang="sql">
 +
-- Describe table
 +
select * from user_tab_columns where table_name = 'OKM_PENDING_TASK' order by column_id;
 +
 +
-- Expand column
 +
alter table OKM_PENDING_TASK modify (PTK_PARAMS varchar2(1024));
 
</source>
 
</source>
  
Line 42: Line 60:
  
 
<source lang="sql">
 
<source lang="sql">
delete from Bookmark bm where bm.node not in (select nd.uuid from NodeDocument nd);
+
delete from Bookmark bm where bm.node not in (select nb.uuid from NodeBase nb);
 +
</source>
 +
 
 +
* Remove deprecated translation:
 +
 
 +
<source lang="sql">
 +
delete from OKM_TRANSLATION where TR_KEY='user.info.chat.user.yet.logged';
 
</source>
 
</source>
  
Line 55: Line 79:
  
 
And start Tomcat again.
 
And start Tomcat again.
 
* Deprecated translation:
 
<source lang="sql">
 
delete from OKM_TRANSLATION where TR_KEY='user.info.chat.user.yet.logged';
 
</source>
 
  
 
{{Note|Recommended to clear browser cache and [http://www.java.com/en/download/help/plugin_cache.xml Java Plugin cache]}}
 
{{Note|Recommended to clear browser cache and [http://www.java.com/en/download/help/plugin_cache.xml Java Plugin cache]}}

Latest revision as of 11:13, 28 February 2013

  • Make a backup!!!
  • Stop Tomcat
  • Run from your preferred SQL client these queries:
update OKM_CONFIG set CFG_VALUE='<b>Message: </b>${notificationMessage}<br/><b>User: </b>${userId}<br/><#list documentList as doc><b>Document: </b><a href="${doc.url}">${doc.path}</a><br/></#list>' where CFG_KEY='notification.message.body';
update OKM_CONFIG set CFG_VALUE='OpenKM - NOTIFICATION' where CFG_KEY='notification.message.subject';

MySQL

-- Describe table
describe OKM_PENDING_TASK;

-- Expand column
alter table OKM_PENDING_TASK modify PTK_PARAMS varchar(1024);

PostgreSQL

-- Describe table
select column_name, udt_name, character_maximum_length from INFORMATION_SCHEMA.COLUMNS where table_name = 'okm_pending_task';

-- Expand column
alter table OKM_PENDING_TASK alter column PTK_PARAMS type varchar(1024);

Oracle

-- Describe table
select * from user_tab_columns where table_name = 'OKM_PENDING_TASK' order by column_id;

-- Expand column
alter table OKM_PENDING_TASK modify (PTK_PARAMS varchar2(1024));
  • Edit OpenKM.cfg and set hibernate.hbm2ddl to update
  • Replace the OpenKM.war
  • Review file descriptor limit and, eventually, increase it.
  • Start Tomcat again
  • Check for database errors:
$ grep "ERROR .*hbm2ddl" $TOMCAT_HOME/logs/catalina.log
  • Go to Administration > Configuration, and add okm_searchImage to tinymce.theme.buttons1 parameter.
  • Go to Administration > Database Query, and execute this query for cleaning orphaned bookmarks:
delete from Bookmark bm where bm.node not in (select nb.uuid from NodeBase nb);
  • Remove deprecated translation:
delete from OKM_TRANSLATION where TR_KEY='user.info.chat.user.yet.logged';
  • Enjoy OpenKM 6.2.11!

If you have any weird problem try to stop Tomcat, delete these folders:

  • $TOMCAT_HOME/webapps/OpenKM
  • $TOMCAT_HOME/work/Catalina/localhost

And start Tomcat again.


Nota clasica.png Recommended to clear browser cache and Java Plugin cache