@Cyrus So you haven’t actually installed any sql services?
I would just add the packages reccomended by the wiki ignoring any errors because some of them are just outdated…
rpm --import http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6
rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm --import http://apt.sw.be/RPM-GPG-KEY.dag.txt
rpm -Uvh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
rpm -Uvh http://www.elrepo.org/elrepo-release-6-5.el6.elrepo.noarch.rpm
rpm --import http://rpms.famillecollet.com/RPM-GPG-KEY-remi
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
Then manually install these packages
yum -y install htmldoc ttf2pt1 t1utils fltk subversion wget git
Then make a folder for the fog installer git and cd into it, download fog, and install it, for example…
(replace ‘fog’ with your username if you are going to let the installer create the fog user for you)
mkdir /home/fog/fogInstalls
mkdir /home/fog/fogInstalls/git
cd /home/fog/fogInstalls/git
git clone https://github.com/FOGProject/fogproject.git ./ #this part will take a little while
cd bin
./installfog.sh # follow the prompts
# Then configure the firewall per this post (https://forums.fogproject.org/topic/6162/firewall-configuration)
for service in http https tftp ftp mysql nfs mountd rpc-bind proxy-dhcp samba; do firewall-cmd --permanent --zone=public --add-service=$service; done
systemctl restart firewalld.service
Then whenever you need to update
cd /home/fog/fogInstalls/git
git pull
cd bin
./installfog.sh -Y
and that’s all there is to it.