This is the next release of WarQuest. This release contain the following changes and bug fixes:
Game Server
– Fix bigint max value written to database.
Play
Click here to enter directly the game!
This is the next release of WarQuest. This release contain the following changes and bug fixes:
Game Server
– Fix bigint max value written to database.
Click here to enter directly the game!
Too bad one of my webservers crashed (Solid state disk failed) 3 days ago. I have roll in a new server and migrated all websites to this new server. If you miss something, please let me known.
I also updated the following software:
– Debian to buster
– WordPress to 5.4.1
step 1: Setup debian buster server
Set hostname
step 2: sudo vi /etc/hostname
Set hostname, domainname
step 3: sudo vi /etc/hosts
Set fix ip address and gateway ip address
step 4: sudo vi /etc/dhcpcd.conf
Install java
step 5: sudo apt-get install galternatives openjdk-8-jdk
Install mysql
step 6: sudo apt-get install mariadb-server
Create database
step 7: sudo mysql -u root
CREATE DATABASE plaatservice;
CREATE USER ‘plaatservice’@’localhost’ IDENTIFIED BY ‘plaatservice’;
GRANT ALL PRIVILEGES ON plaatservice.* TO ‘plaatservice’@’localhost’;
FLUSH PRIVILEGES;
Deploy service
step 8: cp plaatservice.jar /home/pi
Start Service
step 9: sudo nohup java -jar plaatservice.jar