Moving to FOG 1.5.10
-
@Kureebow You missed the
*
on the tail command. Well let’s check the log file exists first.ls - al /var/log/mysql
Disk space is fine.
-
@Sebastian-Roth No such file or directory
-
@Kureebow Try this:
ls -al /var/lib/mysql/ ls -al /var/log/mysql* ps ax | grep -i -e mysql -e maria
-
@Sebastian-Roth
root@localhost ~]# ls -al /var/lib/mysql/
total 28716
drwxr-xr-x. 5 mysql mysql 194 Mar 28 10:57 .
drwxr-xr-x. 61 root root 4096 Jun 3 2022 …
-rw-rw----. 1 mysql mysql 16384 Mar 28 10:57 aria_log.00000001
-rw-rw----. 1 mysql mysql 52 Mar 28 10:57 aria_log_control
drwx------. 2 mysql mysql 8192 Jun 3 2022 fog
-rw-rw----. 1 mysql mysql 18874368 Mar 28 10:57 ibdata1
-rw-rw----. 1 mysql mysql 5242880 Mar 28 10:57 ib_logfile0
-rw-rw----. 1 mysql mysql 5242880 Jun 3 2022 ib_logfile1
drwx------. 2 mysql mysql 4096 Jun 3 2022 mysql
drwx------. 2 mysql mysql 4096 Jun 3 2022 performance_schema
[root@localhost ~]#root@localhost ~]# ls -al /var/log/mysql*
ls: cannot access /var/log/mysql*: No such file or directory
[root@localhost ~]#root@localhost ~]# ps ax | grep -i -e mysql -e maria
13627 pts/1 S+ 0:00 grep --color=auto -i -e mysql -e maria
[root@localhost ~]# -
@Kureebow So there is no database running at the moment as seen from the last command, strange thing.
Try starting it:
systemctl start mariadb.service
-
@Sebastian-Roth Didn’t get a return from that command but no error. I assume it worked.
root@localhost ~]# systemctl start mariadb.service
[root@localhost ~]# -
@Kureebow Sounds good. Check with
systemctl status mariadb.service
again and then re-run the installer ( just the./installfog.sh
from within the right directory, no need to git clone again) -
@Sebastian-Roth Perfect! We are working now. Now it is asking me to update database from ipaddress/fog/management Where do I go to do this or do I just press enter and move forward?
-
@Kureebow Copy and paste the URL printed by the installer to your webbrowser. If it takes you to the known web UI straight away that means there are no schema updates to do. That’s OK. Then hit ENTER for the installer to finish.
-
@Sebastian-Roth We are up and going again. Thank you so much for your help I really appreciate it.
-