Difference between revisions of "Knowledge:Migration from 6.4.0 to 6.4.1"
From OpenKM Documentation
m |
|||
Line 21: | Line 21: | ||
<source lang="sql"> | <source lang="sql"> | ||
-- Describe table | -- Describe table | ||
− | select column_name, udt_name, character_maximum_length from INFORMATION_SCHEMA.COLUMNS where table_name = ' | + | select column_name, udt_name, character_maximum_length from INFORMATION_SCHEMA.COLUMNS where table_name = 'okm_node_document_version'; |
-- Expand column | -- Expand column |
Revision as of 08:17, 2 April 2013
- Download update from http://openkm.com/download/okm/OpenKM-6.4.1.zip (eMpg8eIjY5)
- Make a backup!!!
- Stop Tomcat
- Run from your preferred SQL client these queries:
MySQL
-- Describe table
describe OKM_NODE_DOCUMENT_VERSION;
-- Expand column
alter table OKM_NODE_DOCUMENT_VERSION modify NDV_CHECKSUM varchar(128);
PostgreSQL
-- Describe table
select column_name, udt_name, character_maximum_length from INFORMATION_SCHEMA.COLUMNS where table_name = 'okm_node_document_version';
-- Expand column
alter table OKM_NODE_DOCUMENT_VERSION alter column NDV_CHECKSUM type varchar(128);
Oracle
-- Describe table
select * from user_tab_columns where table_name = 'OKM_NODE_DOCUMENT_VERSION' order by column_id;
-- Expand column
alter table OKM_NODE_DOCUMENT_VERSION modify (NDV_CHECKSUM varchar2(128));
- 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
- Set installation customer at License Manager.
- Enjoy OpenKM 6.4.1!
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.
Recommended to clear browser cache and Java Plugin cache |