yes,all refences are gone
Posts made by mlb2009
-
RE: Fog wont install
Package php-5.5.3-1.fc19.x86_64 already installed and latest version
Package php-mysqlnd-5.5.3-1.fc19.x86_64 already installed and latest version
there all installed -
RE: Fog wont install
- Installing package: php-mysql
- Installing package: mysql
- Installing package: mysql-server
- Checking package: php-mysql…Failed!
but it is installed already.
try again and the same thing it “fake installs” and then it says it not there
- Installing package: php-mysql
-
RE: Fog wont install
yes. when it installs the packaegs it keeps installing them even when there already there
is says Checking package: php-mysql…Failed!enter command : yum install php-mysql
Package php-mysqlnd-5.5.3-1.fc19.x86_64 already installed. -
RE: Fog wont install
with 0.33,it dectects my ip and eveything.I have a internet connection.Same error about mysql.
And how to find out my dhcp router ip?
do i go to my router settings? -
RE: Fog wont install
getting the same error.I will remove mysql and see what happens this time
-
RE: FOG 0.33 - What's coming?
in fog 0.33 it will be installing and working for fedora,right
-
RE: Fog wont install
sorry for the late reply. i connected to the router that connects me to the modem.i know that mysql is working because when enter mysql in the command line,it dosen’t give me any errors.
I downloaded the rpms for mysql and that didn’t work. the command you gave me finally worked.
i disabled iptables and selinux some time ago. -
RE: Fog wont install
it looks like the code to check the packges is this:
confirmPackageInstallation()
{
for x in $packages
do
echo -n " * Checking package: $x";
rpm -q $x >/dev/null 2>&1;
if [ “$?” != “0” ]
then
echo “…Failed!”
exit 1;else echo "...OK"; fi done;
}
and the configue mySQL code is here:
configureMySql()
{
echo -n " * Setting up and starting MySql";
chkconfig mysqld on;
service mysqld restart >/dev/null 2>&1;
service mysqld status >/dev/null 2>&1;
if [ “$?” != “0” ]
then
echo “…Failed!”;
exit 1;
else
echo “…OK”;
fi
}
I do have some command line experence