
#随笔
simongame
A gameplay engineer working for UBI
展开
-
Ubuntu apt update 命令无法解析域名及解决办法
问题描述今天在WSL2 (Ubuntu)上运行apt update命令,结果出现以下错误:$ apt updateErr:1 http://archive.ubuntu.com/ubuntu bionic InRelease Could not connect to archive.ubuntu.com:80 (91.189.91.23). - connect (111: Connection refused) Could not connect to archive.ubuntu.com:80原创 2020-08-04 20:58:08 · 8160 阅读 · 0 评论 -
Ubuntu下安装Kafka
Ubuntu 18.04 LTSJDK 8Kafka 2.12-2.4.0安装Java SDK$ apt update$ apt install openjdk-8-jdk安装Kafka新版Kafka已经集成ZooKeeper,无需单独安装$ wget http://mirrors.tuna.tsinghua.edu.cn/apache/kafka/2.4.0/kafka_2.12-2.4.0.tgz$ tar -zxvf kafka_2.12-2.4.0.tgz修改配置文件$.转载 2020-07-28 12:25:07 · 454 阅读 · 0 评论 -
docker web 客户端PORTAINER安装
安装Portainer$ docker run -d -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock portainer/portainer访问http://localhost:9000原创 2020-07-10 00:03:49 · 265 阅读 · 0 评论 -
WSL2 Docker Distro迁移
参考https://github.com/docker/for-win/issues/7348查看现有distro$ wsl -l -v NAME STATE VERSION* Ubuntu-18.04 Running 2 docker-desktop-data Running 2 docker-desktop Running 2因为d.转载 2020-06-30 03:19:14 · 1569 阅读 · 0 评论 -
Docker安装PostgreSQL数据库和管理工具PgAdmin4
1. 拉取postgres镜像$ docker pull postgresUsing default tag: latestlatest: Pulling from library/postgres8559a31e96f4: Already exists04866763fec8: Pull complete1705d51f48e5: Pull completee59f13162b50: Pull completef34bb6f66594: Pull completecbfb60b6801a原创 2020-06-29 18:59:20 · 3439 阅读 · 1 评论 -
ABP vNext初始化种子数据
1. 定义实体类public class Book : AuditedAggregateRoot<Guid> { public string Name { get; set; } public BookType Type { get; set; } public DateTime PublishDate { get; set; } public float Price { get; set; } prot原创 2020-06-28 20:31:44 · 2806 阅读 · 0 评论 -
NPM安装出现错误Maximum call stack size exceeded
1. 问题今天在安装ng-alain依赖时出现以下错误2. 解决办法先尝试将npm升级到最新版$ npm install npm -g# 检查版本$ npm -v6.14.5运行以下命令删除当前路径下的node_modules目录$ rm node_modules # Are you sure you want to continue?# [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Hel原创 2020-06-26 20:47:58 · 12226 阅读 · 0 评论 -
Gaming as a Service (GaaS)
Table of ContentWhat Is Gaming as a Service?Gaming as a Service: Matching Goals to RealitiesCommon Delivery Methods by Studio Business ModelWhy Kanban for GaaS Delivery?Solving the GaaS Pipeline PuzzleBringing It All TogetherWhat Is Gaming as a Se原创 2020-06-13 21:06:08 · 651 阅读 · 0 评论