


Xiao An won’t go into detail here about how to configure fastDFS+nginx. There are tutorials on the Internet. Although they are not perfect, everyone can probably configure this framework.
For everyone’s needs, I still found a detailed tutorial and share the link as follows:
http://pan.baidu.com/s/1i3D6wPR
The following is my Xiao An My personal experience during the configuration process has been made into a Q&A for reference. Any similarity is purely coincidental, haha.
First, I will write two basic operations:
fastDFS opening:
Open tracker:
/usr/bin/fdfs_trackerd /home/an/work/fastDFS/TLOGS/conf/tracker. conf restart
Enable storage:
/usr/bin/fdfs_storaged /home/an/work/fastDFS/SLOGS/conf/storage.conf restart
Upload files:
fdfs_upload_file /home/an/work/fastDFS/CLOGS /conf/client.conf /home/an/work/fastDFS/CLOGS/conf/1.jpg
(Note: Change the path to the actual path you installed in your own system!!)
Also Remember to use root privileges~
If you need to change the configuration file but are not proficient in the basic vi function gedit, then remember to modify the folder permissions:
chmod -R 777 [filename]
View port Situation:
netstat -unltp | grep fdfs
fastDFS If it cannot start normally, please check whether the dependency package is complete
This is the dependency package required by nginx: wget http://fastdfs.googlecode. com/files/fastdfs-nginx-module_v1.15.tar.gz
The following is Xiaoan’s Q&A session:
1,
Q: After installing fastDFS but not installing nginx, you can upload images, but It is not possible to access images through the browser through the returned URL
A:The latest version of fastDFS no longer supports HTTP access service. It can only be said that the tutorial you are watching is too old and must be used with other servers. Access is available.
2,
Q: What should I do if I keep getting errors after installing nginx and modifying nginx.conf? (This question applies to various situations)
A: This is largely because your nginx does not configure related modules. At this time you have to ask: How can I add the module to nginx after it has been installed? Haha, hum, there is no way to force it in. So my friend, recompile!
There are many commands for configuring modules on the Internet, but I went to foreign official websites to find the most complete one:
First, enter the directory where the nginx installation folder is located, delete make.sh, and then run The following commands
./configure --prefix=/etc/nginx
--sbin-path=/usr/sbin/nginx
--conf-path=/etc/nginx/nginx.conf
--error- log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log
--pid-path=/var/run/nginx.pid
- -lock-path=/var/run/nginx.lock
--http-client-body-temp-path=/var/cache/nginx/client_temp
--http-proxy-temp-path=/var/nginx/ proxy_temp
--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp
--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp
--http-scgi-temp-path= /var/cache/nginx/scgi_temp
--user=nginx
--group=nginx
--with-http_ssl_module
--with-http_realip_module
--with-http_addition_module
--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_stub_status_module
- -with-http_auth_request_module
--with-mail
--with-mail_ssl_module
--with-file-aio
--with-http_spdy_module
--with-ipv6
--add-module=/home/an/work/ etc/fastdfs-nginx-module/src
--add-module=/home/an/work/etc/ngx_cache_purge
--with-pcre=/home/an/work/etc/pcre-8.34
--with- zlib=/home/an/work/etc/zlib-1.2.7
Here please pay attention to adjusting the directory to your own directory and the components related to the last four commands: fastdfs-nginx-module || ngx_cache_purge | | pcre-8.34 || zlib-1.2.7 If you don’t have it, download it online. Remember to install pcre-8.34 before running the command || These two components of zlib-1.2.7 (enter the folder make+make install)
After running the command, enter the command make to compile, and then add the previously installed nginx configuration file *.conf to yourself After backing up (back up whatever has been changed) run make install.
(In fact, it saves trouble. You can also copy and replace the nginx binary file. If you still don’t understand, you can search for “nginx upgrade”)
3,
Q: ERROR: nginx: [emerg ] getpwnam("**") failed
A: There are also relevant answers on this website, for example: sudo adduser --system --no-create-home --disabled-password --group nginx
.
My solution is: remove the # comment in front of "#user [nobody];" in nginx.conf and change it to "user root;" (this will fundamentally solve the problem!)4,
Q: ERROR: open() "/var/run/nginx.pid" failed (2: No such file or directory)
A: This is a common problem, no nonsense : nginx -c /etc/nginx/nginx.conf to solve the problem (please fill in your correct directory)
5,
Q:ERROR:include file "http.conf" not exists, line: "# include http.conf"
A: Find the mod_fastdfs.conf file (if not found, go to the root directory find -name) and find: #include http.conf Just add "#" in front of this
6,
Q:ERROR: host "tracker" is invalid
A: If this is the case, there is still an item in the mod_fastdfs.conf file that is tracker_server=****. The default display is tracker_server = tracker. It should be that the tracker at the back is not replaced with the ip:port of the actual tracker.
Xiaoan suggests that you change the port number of store_path0=.... at the back.
Q: ERROR: unknown directive "proxy_cache_purge"
A: nginx is missing the
proxy_cache_purge module, don't doubt it, just follow Xiao An's second Q&A above to solve it.
8 ? Search!) Find the path where
http.mime_types_filename=
http.anti_steal.token_check_fail=
to the actual mime.types and anti-steal.jpg
If If you say you can’t find it or it’s useless to change it, then delete Xiaoan and think it doesn’t hurt.
There is also another one, don’t forget during installation
ln -s /home/an /work/fastDFS/SP0/data /home/an/work/fastDFS/SP0/data/M00 (change to actual path)
That’s all the big obstacles I encountered Yes, if you have any small problems, you can figure it out by yourself. Hehe, attached is the completed rendering:
Copyright statement: This article is an original article by the blogger and has not been published by the blogger. No reproduction allowed with permission of the owner.
The above introduces the Q&A collection of cluster configuration questions about fastDFS+nginx, including relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

本篇文章给大家带来了关于nginx的相关知识,其中主要介绍了nginx拦截爬虫相关的,感兴趣的朋友下面一起来看一下吧,希望对大家有帮助。

高并发系统有三把利器:缓存、降级和限流;限流的目的是通过对并发访问/请求进行限速来保护系统,一旦达到限制速率则可以拒绝服务(定向到错误页)、排队等待(秒杀)、降级(返回兜底数据或默认数据);高并发系统常见的限流有:限制总并发数(数据库连接池)、限制瞬时并发数(如nginx的limit_conn模块,用来限制瞬时并发连接数)、限制时间窗口内的平均速率(nginx的limit_req模块,用来限制每秒的平均速率);另外还可以根据网络连接数、网络流量、cpu或内存负载等来限流。1.限流算法最简单粗暴的

实验环境前端nginx:ip192.168.6.242,对后端的wordpress网站做反向代理实现复杂均衡后端nginx:ip192.168.6.36,192.168.6.205都部署wordpress,并使用相同的数据库1、在后端的两个wordpress上配置rsync+inotify,两服务器都开启rsync服务,并且通过inotify分别向对方同步数据下面配置192.168.6.205这台服务器vim/etc/rsyncd.confuid=nginxgid=nginxport=873ho

nginx php403错误的解决办法:1、修改文件权限或开启selinux;2、修改php-fpm.conf,加入需要的文件扩展名;3、修改php.ini内容为“cgi.fix_pathinfo = 0”;4、重启php-fpm即可。

跨域是开发中经常会遇到的一个场景,也是面试中经常会讨论的一个问题。掌握常见的跨域解决方案及其背后的原理,不仅可以提高我们的开发效率,还能在面试中表现的更加

nginx部署react刷新404的解决办法:1、修改Nginx配置为“server {listen 80;server_name https://www.xxx.com;location / {root xxx;index index.html index.htm;...}”;2、刷新路由,按当前路径去nginx加载页面即可。

linux版本:64位centos6.4nginx版本:nginx1.8.0php版本:php5.5.28&php5.4.44注意假如php5.5是主版本已经安装在/usr/local/php目录下,那么再安装其他版本的php再指定不同安装目录即可。安装php#wgethttp://cn2.php.net/get/php-5.4.44.tar.gz/from/this/mirror#tarzxvfphp-5.4.44.tar.gz#cdphp-5.4.44#./configure--pr

nginx禁止访问php的方法:1、配置nginx,禁止解析指定目录下的指定程序;2、将“location ~^/images/.*\.(php|php5|sh|pl|py)${deny all...}”语句放置在server标签内即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
