You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
通过下面命令简单配置下所需环境:
apt update && apt -y install mariadb-server
service mariadb start
mysql -u root -p (无密码即可)
create database opensergo;
source /root/schema.sql;
use mysql;
drop user 'root'@'localhost' ;
create user 'root'@'localhost' identified by '' ;
grant all privileges on . to 'root'@'localhost' with grant option;
flush privileges;
exit;
java -jar /root/opensergo-dashboard.jar
然后访问docker所在宿主机8080端口
点击[应用接入]无反应
The text was updated successfully, but these errors were encountered:
基础镜像使用的openjdk:11
docker run -itd --name test -p 8080:8080 openjdk:11
复制所需文件
docker cp schema.sql test:/root/
docker cp opensergo-dashboard.jar test:/root/
进入docker
docker exec -ti test bash
通过下面命令简单配置下所需环境:
apt update && apt -y install mariadb-server
service mariadb start
mysql -u root -p (无密码即可)
create database opensergo;
source /root/schema.sql;
use mysql;
drop user 'root'@'localhost' ;
create user 'root'@'localhost' identified by '' ;
grant all privileges on . to 'root'@'localhost' with grant option;
flush privileges;
exit;
java -jar /root/opensergo-dashboard.jar
然后访问docker所在宿主机8080端口
点击[应用接入]无反应
The text was updated successfully, but these errors were encountered: