View Single Post
  #3  
Old 09-09-2019, 07:06 PM
mushko
Fire Beetle
 
Join Date: Aug 2019
Posts: 12
Default

So I've now completely wiped and reinstalled mysql-server:
Code:
sudo apt purge mysql-server mysql-client mysql-common
sudo apt autoremove
sudo mv -iv /var/lib/mysql /var/tmp/mysql-backup
sudo rm -rf /var/lib/mysql*
sudo mv /etc/mysql /var/tmp/etc_mysql_backup
sudo rm -rf /etc/mysql

sudo apt update
sudo apt install mysql-server
sudo mysqld --initialize
sudo chown -R mysql:mysql /var/lib/mysql
sudo systemctl start mariadb.service
sudo systemctl enable mariadb.service
sudo /usr/bin/mysql_secure_installation
I also deleted the /home/eqemu folder, then rebuilt the server with the install.sh script. As far as I can tell, the database is fine and the install went well.

I can run shared_memory, world, eqlaunch, and zone without any errors. It's still only ucs and queryserv that give the Segmentation fault errors.

If I launch everything except ucs and queryserv, I am able to get to the character creation screen. Trying to zone in, however, gives me the error:
Code:
[World Server] No zoneserver available to boot up.
[World Server] Attempting autobootup of tutorialb (189:0)
...so I assume ucs at least it critical to run, is that correct?
Reply With Quote