FastDFS高可用集群架構(gòu)配置搭建及使用

一皮胡,概述

FastDFS 是一個(gè)開源的高性能分布式文件系統(tǒng)(DFS)叉信。 它的主要功能包括:文件存儲(chǔ)米辐,文件同步和文件訪問(wèn)栓始,以及高容量和負(fù)載平衡务冕。

FastDFS 系統(tǒng)有三個(gè)角色:跟蹤服務(wù)器(Tracker Server)、存儲(chǔ)服務(wù)器(Storage Server)和客戶端(Client)幻赚。

Tracker Server: 跟蹤服務(wù)器禀忆,主要做調(diào)度工作,起到均衡的作用落恼;負(fù)責(zé)管理所有的storage server和group箩退,每個(gè)storage在啟動(dòng)后會(huì)連接 Tracker,告知自己所屬 group 等信息佳谦,并保持周期性心跳戴涝。多個(gè)Tracker之間是對(duì)等關(guān)系,不存在單點(diǎn)故障钻蔑。

Storage Server: 存儲(chǔ)服務(wù)器啥刻,主要提供容量和備份服務(wù);以 group 為單位咪笑,每個(gè) group 內(nèi)可以有多臺(tái) storage server可帽,組內(nèi)的storage server上的數(shù)據(jù)互為備份。

Client:客戶端窗怒,上傳下載數(shù)據(jù)的服務(wù)器

模塊之間的主要關(guān)系如下:

?

下圖是實(shí)現(xiàn)統(tǒng)一的對(duì)外下載訪問(wèn)入口的高可用架構(gòu)蘑拯,其中所有的Nginx只做下載用途,上傳通過(guò)tracker進(jìn)行上傳兜粘。

?

二申窘、環(huán)境準(zhǔn)備工作

?

三、安裝過(guò)程

1孔轴, tracker

#安裝編譯環(huán)境

$ yum groups install Development Tools -y

$ yum install perl -y

$ mkdir /opt/fastdfs

$ mkdir /data/fastdfs

$ cd /opt/fastdfs #為下一步下載源碼做準(zhǔn)備

安裝libfastcommon

#下載文件

$ wget https://github.com/happyfish100/libfastcommon/archive/V1.0.39.tar.gz

$ tar -zxvf libfastcommon-1.0.39.tar.gz

$ cd libfastcommon-1.0.39/

$ ./make.sh

$ ./make.sh install

安裝FastDFS

wget https://github.com/happyfish100/fastdfs/archive/V5.11.tar.gz

$ tar -zxvf fastdfs-5.11.tar.gz

$ cd fastdfs-5.11/

$ ./make.sh

$ ./make.sh install

#配置文件準(zhǔn)備

$ cp /etc/fdfs/tracker.conf.sample /etc/fdfs/tracker.conf #tracker節(jié)點(diǎn) 10.250.112.141/142

$ cp /etc/fdfs/storage.conf.sample /etc/fdfs/storage.conf #storage節(jié)點(diǎn) 10.250.112.143/144

$ cp /etc/fdfs/client.conf.sample /etc/fdfs/client.conf #客戶端文件剃法,測(cè)試用。10.250.112.141/142/143/144

$ cp /opt/fastdfs/fastdfs-5.11/conf/http.conf /etc/fdfs/ #供nginx訪問(wèn)使用? 10.250.112.143/144

$ cp /opt/fastdfs/fastdfs-5.11/conf/mime.types /etc/fdfs/ #供nginx訪問(wèn)使用? 10.250.112.143/144

tracker server配置:

$ vim /etc/fdfs/tracker.conf

#需要修改的內(nèi)容如下

port=22122 # tracker服務(wù)器端口(默認(rèn)22122,一般不修改)

base_path=/data/fastdfs # 存儲(chǔ)日志和數(shù)據(jù)的根目錄

#編輯啟動(dòng)文件

$ vim /usr/lib/systemd/system/fastdfs-tracker.service

[Unit]

Description=The FastDFS File server

After=network.target remote-fs.target nss-lookup.target

[Service]

Type=forking

ExecStart=/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf start

ExecStop=/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf stop

ExecRestart=/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf restart

[Install]

WantedBy=multi-user.target

$ systemctl daemon-reload

$ systemctl enable fastdfs-tracker.service? #不一定成功路鹰,不過(guò)沒(méi)關(guān)系

$ systemctl start fastdfs-tracker.service? #不一定成功贷洲,不過(guò)沒(méi)關(guān)系

$ netstat -tulnp #查看服務(wù)是否啟動(dòng)收厨,端口是否打開

2, Storage

storage server配置

$ vim /etc/fdfs/storage.conf

#需要修改的內(nèi)容如下

port=23000 # storage服務(wù)端口(默認(rèn)23000,一般不修改)

base_path=/data/fastdfs # 數(shù)據(jù)和日志文件存儲(chǔ)根目錄

store_path0=/data/fastdfs # 第一個(gè)存儲(chǔ)目錄

tracker_server=10.250.112.141:22122 # tracker服務(wù)器IP和端口

tracker_server=10.250.112.142:22122 # tracker服務(wù)器IP和端口

http.server_port=8888 # http訪問(wèn)文件的端口(默認(rèn)8888,看情況修改,和nginx中保持一致)

#編輯啟動(dòng)文件

$ vim /usr/lib/systemd/system/fastdfs-storage.service

[Unit]

Description=The FastDFS File server

After=network.target remote-fs.target nss-lookup.target

[Service]

Type=forking

ExecStart=/usr/bin/fdfs_storaged /etc/fdfs/storage.conf start

ExecStop=/usr/bin/fdfs_storaged /etc/fdfs/storage.conf stop

ExecRestart=/usr/bin/fdfs_storaged /etc/fdfs/storage.conf restart

[Install]

WantedBy=multi-user.target

$ systemctl daemon-reload

$ systemctl enable fastdfs-storage.service

$ systemctl start fastdfs-storage.service

$ netstat -tulnp #查看服務(wù)是否啟動(dòng)优构,端口是否打開

#查看集群狀態(tài)

$ fdfs_monitor /etc/fdfs/storage.conf list

Client配置

$ vim /etc/fdfs/client.conf

#需要修改的內(nèi)容如下

base_path=/data/fastdfs

tracker_server=10.250.112.141:22122 # tracker服務(wù)器IP和端口

tracker_server=10.250.112.142:22122 # tracker服務(wù)器IP和端口

#保存后測(cè)試,返回ID表示成功 如:group1/M00/00/00/xx.tar.gz

$ fdfs_upload_file /etc/fdfs/client.conf testfile

3诵叁,安裝nginx和fastdfs-nginx-module

在10.250.112.143和10.250.112.144上

下載nginx module

$ wget https://github.com/happyfish100/fastdfs-nginx-module/archive/V1.20.tar.gz

$ cp /opt/fastdfs/fastdfs-nginx-module-1.20/src/mod_fastdfs.conf /etc/fdfs

安裝nginx

wget http://nginx.org/download/nginx-1.12.2.tar.gz

$ tar -zxvf nginx-1.12.2.tar.gz

$ cd nginx-1.12.2/

$ ./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/nginx --modules-path=/usr/local/nginx/modules --conf-path=/usr/local/nginx/conf/nginx.conf --error-log-path=/usr/local/nginx/logs/error.log --http-log-path=/usr/local/nginx/logs/access.log --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi --http-scgi-temp-path=/var/lib/nginx/tmp/scgi --pid-path=/run/nginx.pid --lock-path=/run/lock/subsys/nginx --user=nginx --group=nginx --with-file-aio --with-http_auth_request_module --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_degradation_module --with-http_slice_module --with-http_stub_status_module --with-http_perl_module=dynamic --with-mail=dynamic --with-mail_ssl_module --with-pcre --with-pcre-jit --with-stream=dynamic --with-stream_ssl_module --with-google_perftools_module --with-debug --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --with-ld-opt='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -Wl,-E' --add-module=/opt/fastdfs/fastdfs-nginx-module-1.20/src/

$ make

$ cp objs/nginx /usr/sbin/nginx

# 查看版本及編譯參數(shù)

$ nginx -v

4,配置nginx

在10.250.112.143和10.250.112.144上

$ vim /etc/fdfs/mod_fastdfs.conf

#需要修改的內(nèi)容如下

tracker_server=192.168.0.1:22122 # tracker服務(wù)器IP和端口

tracker_server=192.168.0.2:22122 # tracker服務(wù)器IP和端口

url_have_group_name=true

base_path=/data/fastdfs

store_path0=/data/fastdfs

$ vim /etc/nginx/nginx.conf

將原來(lái)內(nèi)容去掉钦椭,改為下面的內(nèi)容

worker_processes ?1;

events {

worker_connections ?1024;

}

http {

include ? ? ? mime.types;

default_type ?application/octet-stream;

sendfile ? ? ? ?on;

#keepalive_timeout ?0;

keepalive_timeout ?65;

server {

listen ? ? ? 80;

server_name ?localhost;

location / {

root ? html;

index ?index.html index.htm;

}

error_page ? 500 502 503 504 ?/50x.html;

location = /50x.html {

root ? html;

}

}

server {

listen 8888; ## 該端口為storage.conf中的http.server_port相同

server_name localhost;

location ~/group[0-9]/ {

root /data/fastdfs;

ngx_fastdfs_module;

}

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root html;

}

}

}

注意:1拧额,啟動(dòng)nginx, 用whereis nginx定位nginx的位置彪腔,進(jìn)到sbin目錄侥锦,使用 ./nginx 啟動(dòng)。

? ? ? ? ? ?2德挣,將用到的端口到防火墻中打開恭垦,命令如下

vi /etc/sysconfig/iptables

添加要開放的端口,如8888格嗅,9270番挺,22122等用到的端口

service iptables restart?

注:

在nginx的構(gòu)建中會(huì)遇到不少的報(bào)錯(cuò),具體如下:

./configure: error: the Google perftools module requires the Google perftools library. You can either do not enable the module or install the library.

? ? ? ? ? 解決方法如下:

$ yum install gperftools -y

/configure: error: the HTTP rewrite module requires the PCRE library.

解決方法如下:

$ yum -y install pcre pcre-devel

./configure: error: the HTTP cache module requires md5 functions from OpenSSL library. You can either disable the module by using --without-http-cache option, or install the OpenSSL library into the system, or build the OpenSSL library statically from the source with nginx by using --with-http_ssl_module --with-openssl= options.

解決方法如下:

$ yum -y install openssl openssl-devel

./configure: error: the HTTP gzip module requires the zlib library. You can either disable the module by using –without-http_gzip_module option, or install the zlib library into the system, or build the zlib library statically from the source with nginx by using –with-zlib= option.

解決方法如下:

$ yum install -y zlib-devel

./configure: error: the HTTP XSLT module requires the libxml2/libxslt libraries. You can either do not enable the module or install the libraries.

解決方法如下:

$ yum -y install libxml2 libxml2-dev

$ yum -y install libxslt-devel

./configure: error: the HTTP image filter module requires the GD library. You can either do not enable the module or install the libraries.

解決方法如下:

$ yum -y install gd-devel

./configure: error: perl module ExtUtils::Embed is required

解決方法如下:

$ yum -y install perl-devel perl-ExtUtils-Embed

./configure: error: the GeoIP module requires the GeoIP library. You can either do not enable the module or install the library.

解決方法如下:

$ yum -y install GeoIP GeoIP-devel GeoIP-data

在make過(guò)程中會(huì)出現(xiàn)一個(gè)報(bào)錯(cuò):/usr/include/fastdfs/fdfs_define.h:15:27: fatal error: common_define.h: No such file or directory

解決方法如下:

修改fastdfs-nginx-module-1.20/src/config文件屯掖,修改如下:

ngx_module_incs="/usr/include/fastdfs /usr/include/fastcommon/"

CORE_INCS="$CORE_INCS /usr/include/fastdfs /usr/include/fastcommon/"

然后重新./configure && make建芙,就可以了

5、配置文件訪問(wèn)的負(fù)載均衡和高可用

在10.250.112.145和10.250.112.146上安裝nginx

wget http://nginx.org/download/nginx-1.12.2.tar.gz

$ tar -zxvf nginx-1.12.2.tar.gz

$ cd nginx-1.12.2/

$ ./configure

$ make

$ make install

安裝keepalived

yum install -y nginx keepalived

nginx.conf配置文件如下

worker_processes ?1;

events {

worker_connections ?1024;

}

http {

include ? ? ? mime.types;

default_type ?application/octet-stream;

sendfile ? ? ? ?on;

#keepalive_timeout ?0;

keepalive_timeout ?65;

upstream fdfs_group {

server 10.250.112.143:8888 weight=1 max_fails=2 fail_timeout=30s;

server 10.250.112.144:8888 weight=1 max_fails=2 fail_timeout=30s;

}

server {

listen 80;

server_name localhost;

location ~/group[0-9]/{

proxy_next_upstream http_502 http_504 error timeout invalid_header;

proxy_pass http://fdfs_group;

expires 30d;

}

}

}

10.250.112.145 上keepalived配置文件如下:

global_defs {

? router_id LVS_DEVEL

}

vrrp_script chk_ngx {

? ? script "/etc/keepalived/check_nginx.sh"

? ? interval 2

? ? weight -5

? ? fall 3?

? ? rise 2

}

vrrp_instance VI_1 {

? ? interface eno16777984

? ? state MASTER

? ? priority 100

? ? virtual_router_id 11

? ? advert_int 1

? ? authentication {

? ? ? ? auth_type PASS

? ? ? ? auth_pass 1111

? ? }

? ? unicast_src_ip 10.250.112.145

? ? unicast_peer {

? ? ? ? 10.250.112.146

? ? }

? ? virtual_ipaddress {

? ? ? ? 10.250.112.145

? ? }

? ? track_script {

? ? ? chk_ngx

? ? }

? ? notify_master "/etc/keepalived/notify.sh master"?

? ? notify_backup "/etc/keepalived/notify.sh backup"?

? ? notify_fault "/etc/keepalived/notify.sh fault"

}

新建一個(gè)check_nginx.sh文件懂扼,內(nèi)容如下

#!/bin/bash

counter=$(ps -C nginx --no-heading|wc -l)

if [ "${counter}" = "0" ]; then

? ? exit 1

else

? ? exit 0

fi

到這里,所有的安裝都完成了

在10.250.112.143上上傳的圖片就可以通過(guò)下面的路徑訪問(wèn)了

http://10.250.112.143:8888/group1/M00/00/00/CvpwkF2BlAWAPEXTAAqPeqUITvA818.png

http://10.250.112.146/group1/M00/00/00/CvpwkF2BlAWAPEXTAAqPeqUITvA818.png

后面一種是做過(guò)負(fù)載均衡的右蒲。

四阀湿,代碼層面使用FastDFS

建立maven工程,引入


net.oschina.zcx7878

fastdfs-client-java

1.27.0.0

上傳文件

@Override

public String upload(String fileName) {

String filePath = getFilePrefix(finalFilePathPrefix);

try {

//?? ??? ??? ?讀取本地conf文件配置時(shí)

ClientGlobal.init("fdfs_client.conf");

//?? ??? ??? ?讀取apollo配置時(shí)

//?? ??? ??? ?ClientGlobal.setG_connect_timeout(connectTimeout);

//?? ??? ??? ?ClientGlobal.setG_network_timeout(networkTimeout);

//?? ??? ??? ?ClientGlobal.setG_charset(charset);

//?? ??? ??? ?ClientGlobal.setG_anti_steal_token(httpAntiStealToken);

//?? ??? ??? ?ClientGlobal.setG_secret_key(httpSecretKey);

//?? ??? ??? ?ClientGlobal.setG_tracker_http_port(httpTrackerPort);

//?? ??? ??? ?String[] trackerServers = trackerServerIps.split("\\,");

//?? ??? ??? ?InetSocketAddress[] tracker_servers = new InetSocketAddress[trackerServers.length];

//?? ??? ? ? ?for (int i = 0; i < trackerServers.length; i++) {

//?? ??? ? ? ? ?tracker_servers[i] = new InetSocketAddress(trackerServers[i].trim(), trackerServerPort);

//?? ??? ? ? ?}

//?? ??? ??? ?TrackerGroup trackerGroup = new TrackerGroup(tracker_servers);

//?? ??? ??? ?ClientGlobal.setG_tracker_group(trackerGroup);

//獲取client

TrackerClient tracker = new TrackerClient();

TrackerServer trackerServer = tracker.getConnection();

StorageServer storageServer = null;

StorageClient client = new StorageClient(trackerServer, storageServer);

//上傳文件

NameValuePair[] metaList = new NameValuePair[1];

metaList[0] = new NameValuePair("fileName", fileName);

String results[] = client.upload_file(fileName, null, metaList);

filePath = filePath + results[0]+"/"+results[1];

} catch (IOException e) {

e.printStackTrace();

} catch (MyException e) {

e.printStackTrace();

}

return filePath;

}

下載文件

@Override

public String download(String url, String localName) {

if (StringUtil.isBlank(url)) {

return "Fail";

}

String fileName = url.split("/"+groupName+"/")[1];

try {

ClientGlobal.setG_connect_timeout(connectTimeout);

ClientGlobal.setG_network_timeout(networkTimeout);

ClientGlobal.setG_charset(charset);

ClientGlobal.setG_anti_steal_token(httpAntiStealToken);

ClientGlobal.setG_secret_key(httpSecretKey);

ClientGlobal.setG_tracker_http_port(httpTrackerPort);

String trackerServers[] = trackerServerIps.split("\\,");

InetSocketAddress[] tracker_servers = new InetSocketAddress[trackerServers.length];

for (int i = 0; i < trackerServers.length; i++) {

tracker_servers[i] = new InetSocketAddress(trackerServers[i].trim(), trackerServerPort);

}

TrackerGroup trackerGroup = new TrackerGroup(tracker_servers);

ClientGlobal.setG_tracker_group(trackerGroup);

//獲取client

TrackerClient tracker = new TrackerClient();

TrackerServer trackerServer = tracker.getConnection();

StorageServer storageServer = null;

StorageClient client = new StorageClient(trackerServer, storageServer);

//0表示下載成功

int count = client.download_file(groupName, fileName,localName);

System.out.println(count);

} catch (IOException | MyException e) {

e.printStackTrace();

}

return "success";

}

?

fdfs_client.conf 內(nèi)容如下:

connect_timeout = 2

network_timeout = 30

charset = UTF-8

http.tracker_http_port = 8080

http.anti_steal_token = no

http.secret_key = FastDFS1234567890

tracker_server = 10.250.112.141:22122

tracker_server = 10.250.112.142:22122


碼字不易瑰妄,如果覺得有幫助陷嘴,一定要給我點(diǎn)贊喲~~

不然信不信我砸了你家燈,半夜偷親你 ( ̄ε  ̄) !!!

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末间坐,一起剝皮案震驚了整個(gè)濱河市灾挨,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌竹宋,老刑警劉巖劳澄,帶你破解...
    沈念sama閱讀 211,348評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異蜈七,居然都是意外死亡秒拔,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門飒硅,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)砂缩,“玉大人作谚,你說(shuō)我怎么就攤上這事♀职牛” “怎么了妹懒?”我有些...
    開封第一講書人閱讀 156,936評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)双吆。 經(jīng)常有香客問(wèn)我眨唬,道長(zhǎng),這世上最難降的妖魔是什么伊诵? 我笑而不...
    開封第一講書人閱讀 56,427評(píng)論 1 283
  • 正文 為了忘掉前任单绑,我火速辦了婚禮,結(jié)果婚禮上曹宴,老公的妹妹穿的比我還像新娘搂橙。我一直安慰自己,他們只是感情好笛坦,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,467評(píng)論 6 385
  • 文/花漫 我一把揭開白布区转。 她就那樣靜靜地躺著,像睡著了一般版扩。 火紅的嫁衣襯著肌膚如雪废离。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,785評(píng)論 1 290
  • 那天礁芦,我揣著相機(jī)與錄音蜻韭,去河邊找鬼。 笑死柿扣,一個(gè)胖子當(dāng)著我的面吹牛肖方,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播未状,決...
    沈念sama閱讀 38,931評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼俯画,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了司草?” 一聲冷哼從身側(cè)響起艰垂,我...
    開封第一講書人閱讀 37,696評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎埋虹,沒(méi)想到半個(gè)月后猜憎,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,141評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡搔课,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,483評(píng)論 2 327
  • 正文 我和宋清朗相戀三年拉宗,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,625評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡旦事,死狀恐怖魁巩,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情姐浮,我是刑警寧澤谷遂,帶...
    沈念sama閱讀 34,291評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站卖鲤,受9級(jí)特大地震影響肾扰,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜蛋逾,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,892評(píng)論 3 312
  • 文/蒙蒙 一集晚、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧区匣,春花似錦偷拔、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至姑丑,卻和暖如春蛤签,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背栅哀。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來(lái)泰國(guó)打工震肮, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人留拾。 一個(gè)月前我還...
    沈念sama閱讀 46,324評(píng)論 2 360
  • 正文 我出身青樓戳晌,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親间驮。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,492評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容