This is not the first time I have had this issue during installation, but this time around I am having difficulty figuring out what I am doing wrong. Mysql is up and working, and client works. I can connect to it with the client and run queries without issue. When I run kamdbctl create I get the following.<br>
<br>INFO: test server charset<br>INFO: creating database openser ...<br>ERROR 1045 (28000): Access denied for user &#39;root&#39;@&#39;localhost&#39; (using password: YES)<br>ERROR: Creating core tables failed!<br><br>It creates the database but than fails. From this point I can no longer connect to mysql with what was my root password. I have to go through the process of resetting my root password before I can log back into mysql. How is this script chaning or corrupting my mysql root password?<br>
<br>This is the relevant content of my kamctlrc file:<br><br># $Id$<br>#<br># The Kamailio configuration file for the control tools.<br>#<br># Here you can set variables used in the kamctl and kamdbctl setup<br># scripts. Per default all variables here are commented out, the control tools<br>
# will use their internal default values.<br><br>## your SIP domain<br>SIP_DOMAIN=<a href="http://sbc.mydomain.net">sbc.mydomain.net</a><br><br>## chrooted directory<br># $CHROOT_DIR=&quot;/path/to/chrooted/directory&quot;<br>
<br>## database type: MYSQL, PGSQL, ORACLE, DB_BERKELEY, DBTEXT, or SQLITE<br># by default none is loaded<br>#<br># If you want to setup a database with kamdbctl, you must at least specify<br># this parameter.<br>DBENGINE=MYSQL<br>
<br>## database host<br>DBHOST=localhost<br><br>## database name (for ORACLE this is TNS name)<br>DBNAME=openser<br><br># database path used by dbtext, db_berkeley or sqlite<br># DB_PATH=&quot;/usr/local/etc/kamailio/dbtext&quot;<br>
<br>## database read/write user<br>DBRWUSER=root<br><br>## password for database read/write user<br>DBRWPW=&quot;mypassword&quot;<br><br>## database read only user<br>DBROUSER=root<br><br>## password for database read only user<br>
DBROPW=&quot;mypassword&quot;<br><br>## database super user (for ORACLE this is &#39;scheme-creator&#39; user)<br>DBROOTUSER=&quot;root&quot;<br><br>