Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
mysqldump vcl > ~/vcl-pre2.2.1-upgrade.sql

Update mysql schema

There was a slightly incorrect definition for the vmhost table. vmprofileid should be a smallint instead of a tinyint. The following steps will correct that before applying the update-vcl.sql script.

Code Block

wget http://people.apache.org/~jfthomps/patches/2.1/vmhostvmprofileid.sql
mysql vcl < vmhostvmprofileid.sql

This step updates the mysql schema.

...