pomelo游戲服務(wù)器開發(fā)(一)
從零開始搭建pomelo服務(wù)器,簡單粗暴的記一記。
1. 確保你的系統(tǒng)中安裝有python(2.5 < version < 3.0)以及C++的編譯器。
2. 確保系統(tǒng)中安裝了Node.JS。
3. 可以通過git庫下載pomelo源碼,并使用npm進(jìn)行安裝。
游戲服務(wù)端pomelo安裝配置
一、安裝環(huán)境
debian 7.0 amd64
二、安裝需要的組件
1、安裝nodejs
注:debian下nodejs沒有相應(yīng)的apt包,所以無法用apt-get安裝,只能通過nodejs的源碼包安裝,
這里有比較全的其他系統(tǒng)環(huán)境下安裝nodejs的方式https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager
a、安裝所需的組件,python g++
#apt-get install python g++ make checkinstall fakeroot?
b、到http://nodejs.org/獲取源碼包的下載地址,下載nodejs的gz包
wget http://nodejs.org/dist/v0.10.28/node-v0.10.28.tar.gz
c、解壓編譯安裝
tar zxvf node-v0.10.28.tar.gz
cd node-v0.10.28
./configure
make?
sudo make install
d、檢查是否安裝成功
#node -v
v0.10.28
三、安裝pomelo
安裝的說明:https://github.com/NetEase/pomelo/wiki/%E5%AE%89%E8%A3%85pomelo
方式一、使用npm(node包管理工具)全局安裝pomelo:
$ npm install pomelo -g
等待一會兒就開始下載包安裝,最后提示以下信息,說明安裝成功
> ws@0.4.25 install /usr/local/lib/node_modules/pomelo/node_modules/ws
> (node-gyp rebuild 2> builderror.log) || (exit 0)
方式二、通過下載源代碼的方式安裝
$ git clone https://github.com/NetEase/pomelo.git
$ cd pomelo
$ npm install -g
四、安裝問題
安裝pomelo時,提示
gyp WARN EACCES user "root" does not have permission to access the dev dir "/root/.node-gyp/0.10.28"
gyp WARN EACCES attempting to reinstall using temporary dev dir "/root/.nvm/v0.10.28/lib/node_modules/pomelo/node_modules/pomelo-rpc/node_modules/toobusy/.node-gyp"
命令換成 npm install pomelo -g --unsafe-perm 就可以成功,運(yùn)行到gyp http GET http://nodejs.org/dist/v0.10.28/node-v0.10.28.tar.gz時, 整個安裝過程會有點久,需耐心等待
五、第一個游戲服務(wù)端項目
pomelo命令行手冊https://github.com/NetEase/pomelo/wiki/pomelo%E5%91%BD%E4%BB%A4%E8%A1%8C%E5%B7%A5%E5%85%B7%E4%BD%BF%E7%94%A8
1、創(chuàng)建項目?
#pomelo init ./mygameserver
2、安裝依賴包:
#cd mygameserver
#sh npm-install.sh
3、啟動game-server服務(wù)器:
$ cd game-server
$ pomelo start
4、啟動web-server服務(wù)器:
$ cd web-server
$ node app?
4、啟動瀏覽器,運(yùn)行http://你的服務(wù)器ip:3001/,看到pomelo的歡迎頁面
5、點擊‘Test Game Server’按鈕,此時沒反應(yīng),
進(jìn)入項目目錄mygameserver下的
#cd ./web-server/public
#vim index.html?
修改index.html 中var host = "127.0.0.1";為var host = "你的服務(wù)器ip";
此時點擊‘Test Game Server’按鈕,就會出現(xiàn)game server is ok 消息框。
好了 搭建成功!