LSPS requires an lsps database with a dedicated user to store its system data. To set up such a database, do the following:
Create a database with the character encoding to UTF-8.
Example MySQL database setup with UTF-8
CREATE DATABASE lsps DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
GRANT ALL PRIVILEGES ON lsps.* TO lsps@'' IDENTIFIED BY 'lsps';
FLUSH PRIVILEGES;
./migrate.sh databaseUrl:<DATABASE_URL> user:<DB_USER> password:<ESCAPED_DB_PASSWD>
(for details, refer to migratescriptparams).my.cnf
or mysqld.conf
files: [mysqld]
max_allowed_packet=512M
default_time_zone='+0:00'