mirror of https://github.com/apache/cloudstack.git
CS-14610
Management server not able to connect to DB when there is no password set for cloud user/ if password is set to anything other than 'cloud' fixed
This commit is contained in:
parent
0f542545e3
commit
e6a60dfdc3
|
|
@ -3,8 +3,8 @@ SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ANSI';
|
|||
DROP DATABASE IF EXISTS cloudbridge;
|
||||
CREATE DATABASE cloudbridge;
|
||||
|
||||
GRANT ALL ON cloudbridge.* to `cloud`@`localhost` identified by 'cloud';
|
||||
GRANT ALL ON cloudbridge.* to `cloud`@`%` identified by 'cloud';
|
||||
GRANT ALL ON cloudbridge.* to `cloud`@`localhost`;
|
||||
GRANT ALL ON cloudbridge.* to `cloud`@`%`;
|
||||
|
||||
GRANT process ON *.* TO `cloud`@`localhost`;
|
||||
GRANT process ON *.* TO `cloud`@`%`;
|
||||
|
|
|
|||
|
|
@ -5,6 +5,11 @@
|
|||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.python.pydev.PyDevBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
|
|
@ -13,5 +18,6 @@
|
|||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
<nature>org.python.pydev.pythonNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
|
|
|
|||
Loading…
Reference in New Issue