Skip to content
sundream edited this page Feb 25, 2019 · 3 revisions
  • 编译gamesrv失败提示:skynet/3rd/jemalloc/autogen.sh: No such file or directory
    这是因为你没有检出仓库时没有带--recursive字段,解决方式有两种:
    0x01

    cd ~/ggApp/gamesrv
    git submodule update --init
    

    0x02

    # 删除~/ggApp,重新检出
    rm -rf ~/ggApp
    git clone https://github.com/sundream/ggApp --recuisve
    
  • client登录提示: 服务器不存在
    这是因为首次启动账号中心没有导入服务器导致,可以如下解决

    cd ~/ggApp/tools/script
    python import_servers.py --appid=appid --config=servers.config
    
  • ggApp-ansible部署时提示/usr/bin/ssh-copy-id: ERROR: ssh: connect to host 127.0.0.1 port 22: Connection refused
    这可能是因为本地没有开启sshd服务,如ubuntu下可以sudo apt intall ssh来安装

Clone this wiki locally