背景:装好TFS,java client也调用成功了,现在需要访问tfs中的文件;访问有几种方式:一种是java client调用,把tfs文件Fetch到本地;还有一种就是通过nginx的tfs模块以rest方式访问tfs中的文件,比如html文件。我们项目中刚好是在tfs存储海量html小文件,而且是以iframe src="xxx.html"的方式,所以就用到了这后一种方式。
1下载nginx-tfs
我是用git clone了源码
2 安装yajl库
我是下载了yajl2.1.0
./configure
make
make install
比较顺利
3 安装nginx或Tengine,
我下载nginx1.6时configure报错,最后放弃了nginx,下载了Tengine2.0.1.反正编译安装方法差不多。
但是configure时报缺少pcre和openssl库,所以还得分别下载
最后是./configure --add-module=/root/git/nginx-tfs --with-pcre=/opt/pcre-8.35 --with-openssl=/opt/openssl-1.0.1g
还有个奇怪之处是我分别预先安装好pcre和openssl,再单独configure不行;非得--with参数加在configure后面......
4 配置nginx.conf
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
# load modules compiled as Dynamic Shared Object (DSO)
#
#dso {
# load ngx_http_fastcgi_module.so;
# load ngx_http_rewrite_module.so;
#}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
tfs_upstream tfs_ns {
server 10.0.2.15:8100;
type ns;
}
tfs_body_buffer_size 2m;
tfs_send_timeout 3s;
tfs_connect_timeout 3s;
tfs_read_timeout 3s;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
#location / {
# root html;
# index index.html index.htm;
#}
client_max_body_size 4096m;
tfs_keepalive max_cached=50 bucket_count=10;
tfs_log "pipe:/usr/sbin/cronolog -p 30min /usr/local/nginx/logs/cronolog/%Y/%m/%Y-%m-%d-%H-%M-tfs_access.log";
location / {
tfs_pass tfs://tfs_ns;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
5启动Tengine
/usr/local/nginx/sbin/nginx
6 启动TFS
./scripts/tfs start_ns
./scripts/tfs start_ds 1
7最后,打开浏览器输入url验证
一次成功,呵呵
分享到:
相关推荐
2. 配置Nginx:解压`nginx-tfs-master`,然后在Nginx源代码目录下执行`./configure --add-module=path/to/nginx-tfs-master`,指定Nginx-TFS模块的路径。 3. 编译和安装:运行`make`和`make install`来编译并安装...
ubuntu安装tfs tfs-nginx的方法 ######################################################################################## tfs安装 1.降级安装gcc4.1.2 2.安装依赖包 3.安装tb-common-utils 4.安装TFS ########...
### TFS 2.4.3及nginx-tfs编译安装相关知识点 #### 一、TFS 2.4.3编译安装流程 **1. GCC降级** - **原因**: 某些软件可能对GCC版本有特定的要求,以确保编译过程顺利进行。在本案例中,由于TFS 2.4.3的编译需求,...
【Nginx-TFS-Master】是一个针对Linux平台的负载均衡解决方案,主要涉及Nginx服务器与TFS(TensorFlow Serving)的集成部署。在这个项目中,Nginx被用作一个高性能的HTTP和反向代理服务器,为TFS提供稳定、高效的...
TFS2012安装部署详细步骤 TFS2012(Team Foundation Server 2012)是一款由微软公司开发的版本控制系统,旨在帮助团队更好地协作、管理和跟踪软件开发项目。安装和部署TFS2012需要遵循严格的步骤,以确保系统的稳定...
**TFS工具TFS tools** TFS(Team Foundation Server)是微软推出的一款强大的协作开发工具,主要用于项目管理、源代码版本控制、持续集成、缺陷跟踪等。TFS工具集为开发者提供了一整套的解决方案,使得团队可以在...
TFS2013及TFS2015序列号,亲测可用!
【Tfs2008迁移升级到TFS2010并带门户网站资料的方法】 迁移Tfs2008到TFS2010是一项重要的系统升级任务,尤其是在需要保留门户网站资料的情况下。以下是一个详细步骤的概述: 1. **安装SharePoint Service 3.0** ...
IDEA 配置 TFS 操作手册 在本手册中,我们将详细介绍如何在 IntelliJ IDEA 中配置 TFS(Team Foundation Server),并上传代码到 TFS 服务器。同时,我们也会介绍如何从 TFS 服务器下载代码。 一、TFS 配置及上传...
【标题】:“tfsserver2017.0.1.rar”是指Team Foundation Server (TFS) 2017的版本更新包,版本号为0.1。TFS是微软提供的一款强大的版本控制和项目协作工具,尤其适用于软件开发团队。 【描述】:“tfsserver2017....
标题中的“IDEA新版本2020.3的TFS插件”指的是IDEA 2020.3版本中针对TFS的专门插件,该插件旨在帮助用户无缝地在IDEA环境中与TFS进行交互,实现代码的版本控制、变更跟踪、分支管理等功能。描述中的"IDEA TFS支持...
【TFS的使用说明文档】 TFS(Team Foundation Server)是微软推出的一款团队协作和版本控制工具,主要用于软件开发过程中的项目管理、源代码管理、缺陷跟踪、构建管理和工作项管理等多个方面。以下是对TFS使用的...
**IDEA TFS支持组件-idea-tfs-203** 在软件开发过程中,源代码管理工具扮演着至关重要的角色,而Team Foundation Server (TFS) 和 IntelliJ IDEA 是两个广泛使用的工具。TFS 是微软提供的一个强大的版本控制系统,...
其中,Team Foundation Server(简称TFS)是微软提供的一款集成了源代码管理、自动化构建、报告服务、项目跟踪等功能于一体的综合开发平台。本文将围绕“一枚TFS KEY”这一主题展开讨论,旨在帮助那些遇到TFS Key...
TFS2010标准版安装 TFS2010是Microsoft推出的团队协作平台,旨在提高软件开发的效率和质量。自从TFS2005和TFS2008以来,TFS2010终于解决了配置复杂的问题,变得更加简洁易用。今天,我们将对TFS2010的安装和配置...
**TFS Bug 管理使用教程** 团队项目中的Bug管理是软件开发过程中的关键环节,确保产品质量和项目进度。微软的TFS(Team Foundation Server)提供了强大的Bug管理功能,与Visual Studio(VS)深度集成,同时支持Java...
### TFS如何强制撤销被迁出的文件 在团队协作软件开发过程中,使用源代码管理系统是必不可少的一部分。其中,Microsoft的Team Foundation Server (TFS)作为一款强大的版本控制工具,在项目管理和版本控制方面发挥着...
RESTful接口层的支持是通过TFS和Tair实现的,它们分别是分布式文件系统和分布式K/V存储系统。这种架构简化了应用开发,因为可以直接让浏览器处理JSON格式的数据,从而避免了在服务器端进行页面渲染的需要。 为了...
- **接口服务化**:通过Nginx Proxy实现了Ss client的所有功能,并对外提供了HTTP访问接口,使得TFS更易于集成和使用。 #### 六、总结 淘宝TFS的架构演进是一个持续优化的过程,旨在应对日益增长的业务需求。通过...