install_k8s icon indicating copy to clipboard operation
install_k8s copied to clipboard

some troubleshooting methods at the beginning, FYI

Open TowerLeon opened this issue 1 year ago • 0 comments

  1. stop and disable firewalld while creating new virtual machines.

[root@localhost data]# sudo systemctl stop firewalld [root@localhost data]# sudo systemctl disable firewalld

  1. create mysql users and databases as required. CREATE DATABASE 'sysbase'; CREATE USER 'sysbase'@localhost IDENTIFIED BY 'SttA35BBx5dbl1xB7NS7'; GRANT ALL PRIVILEGES ON . TO 'sysbase'@localhost IDENTIFIED BY 'SttA35BBx5dbl1xB7NS7'; FLUSH PRIVILEGES;

  2. change host as required. window.CONFIG = { apiHost: 'http://localhost:8081/', perPage: 20, }

TowerLeon avatar Mar 11 '23 06:03 TowerLeon