AppFuseEnvironmentIssues |
|
Your trail: |
Difference between
version 8
and
version 7:
At line 3 added 6 lines. |
* MySQL 4.0.20 standard for redhat 8.0 linux x86 [maybe other linux impl's too] has a problem whereby the permissions granted are granted for user 'test@localhost' which causes the 'ant setup' target in the generated app to fail because it tries unsuccessfully to access mysql as 'test@<hostname>'. |
** Resolution: In the generated app directory cd to MYAPPNAME/metadata/sql and modify mysql-create.sql by copying the line that reads 'grant all privileges on qts.* to test@localhost identified by "test";' and adding a new line that adds the same privileges to test@<hostname>. The resulting 2 lines should look like this when done: \\ |
%%(margin-left: 60px) |
{{{ grant all privileges on qts.* to test@localhost identified by "test"; |
grant all privileges on qts.* to test@<hostname> identified by "test"; |
}}} %% |
Back to AppFuseEnvironmentIssues,
or to the Page History.
|