mysql.conf: No such file or directory

MtK

Verified User
Joined
Aug 2, 2007
Messages
412
on a fresh installation:
Code:
Would you like to search for the fastest download mirror? (y/n): y
grep: /usr/local/directadmin/conf/mysql.conf: No such file or directory
grep: /usr/local/directadmin/conf/mysql.conf: No such file or directory
Downloading             servers.txt...
 
It might have been just checking if the file existed or not. After you completely went through the install did the file exist or not?
 
It might have been just checking if the file existed or not. After you completely went through the install did the file exist or not?
yes, mysql in installed, but I don't think such error/message should appear.
 
Hello,

I've looked at the SVN code, and Martynas fixed that 2 days ago in CB2.0
If you're using CustomBuild 1.2, and still getting that error, then let us know.

John
 
Hello,

I've looked at the SVN code, and Martynas fixed that 2 days ago in CB2.0
If you're using CustomBuild 1.2, and still getting that error, then let us know.

John
isn't this the CB2.0 sub-forum? ;)
last test was yesterday afternoon, on a free CentOS server, so setup.php was just downloaded.
 
Which downloadserver is being used? If other than files1, then sync can take up to 24 hours so you might have the older version.

Here are the changes (best attempt at an svn copy/paste):
fi
#if we're on a LAN, then things change.
if [ `grep -c -e "^access_host=" ${DA_MYSQL}` = "0" ]; then
MYSQL_ACCESS_HOST=`grep "^access_host=" ${DA_MYSQL} | cut -d= -f2`
if [ -s ${DA_MYSQL} ]; then
if [ `grep -c -e "^access_host=" ${DA_MYSQL}` = "0" ]; then
MYSQL_ACCESS_HOST=`grep "^access_host=" ${DA_MYSQL} | cut -d= -f2`
fi
fi
so check to see if you get the same thing in your build script.

If anyone runs into the issue again, please let us know.

John
 
Just a short off-topic note since I've not in all these years ever seen a table used in our forums...

Yes, vBulletin supports standard html table creation; just use the [ and ] characters instead of < and >.

Jeff
 
Which downloadserver is being used? If other than files1, then sync can take up to 24 hours so you might have the older version.

Here are the changes (best attempt at an svn copy/paste):
fi
#if we're on a LAN, then things change.
if [ `grep -c -e "^access_host=" ${DA_MYSQL}` = "0" ]; then
MYSQL_ACCESS_HOST=`grep "^access_host=" ${DA_MYSQL} | cut -d= -f2`
if [ -s ${DA_MYSQL} ]; then
if [ `grep -c -e "^access_host=" ${DA_MYSQL}` = "0" ]; then
MYSQL_ACCESS_HOST=`grep "^access_host=" ${DA_MYSQL} | cut -d= -f2`
fi
fi
so check to see if you get the same thing in your build script.

If anyone runs into the issue again, please let us know.

John
this is what I currently have:
Code:
        #if we're on a LAN, then things change.
        if [ -s ${DA_MYSQL} ]; then
                if [ `grep -c -e "^access_host=" ${DA_MYSQL}` = "0" ]; then
                        MYSQL_ACCESS_HOST=`grep "^access_host=" ${DA_MYSQL} | cut -d= -f2`
                fi
        fi
the installation was made from scratch (fresh CentOS installation) yesterday...


Just a short off-topic note since I've not in all these years ever seen a table used in our forums...

Yes, vBulletin supports standard html table creation; just use the [ and ] characters instead of < and >.

Jeff
yep, it looks nice, just use the WYSISYG (which is hardly used)... :)
 
Thanks for the feeback.
New bug found and fixed for CB2.
Code:
[TABLE="class: diff, width: 1664"]
[TR]
[TD="class: diffdeleted, bgcolor: #F8E4CC"]MYSQLUSER=`grep "^user=" ${DA_MYSQL} | cut -d= -f2`[/TD]
[/TR]
[TR]
[TD="class: diffdeleted, bgcolor: #FFCCAA"]MYSQLPASSWORD=`grep "^passwd=" ${DA_MYSQL} | cut -d= -f2`[/TD]
[/TR]
[TR]
[TD="class: diffadded, bgcolor: #DDFFDD"]if [ -s ${DA_MYSQL} ]; then[/TD]
[/TR]
[TR]
[TD="class: diffadded, bgcolor: #DDFFDD"]        MYSQLUSER=`grep "^user=" ${DA_MYSQL} | cut -d= -f2`[/TD]
[/TR]
[TR]
[TD="class: diffadded, bgcolor: #DDFFDD"]        MYSQLPASSWORD=`grep "^passwd=" ${DA_MYSQL} | cut -d= -f2`[/TD]
[/TR]
[TR]
[TD="class: diffadded, bgcolor: #DDFFDD"]else[/TD]
[/TR]
[TR]
[TD="class: diffadded, bgcolor: #DDFFDD"]        MYSQLUSER='da_admin'[/TD]
[/TR]
[TR]
[TD="class: diffadded, bgcolor: #DDFFDD"]        MYSQLPASSWORD='nothing'[/TD]
[/TR]
[TR]
[TD="class: diffadded, bgcolor: #DDFFDD"]fi[/TD]
[/TR]
[/TABLE]
Updated on files1.

John
 
Back
Top