Custom Query (2297 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (13 - 15 of 2297)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Ticket Resolution Summary Owner Reporter
#1577 fixed When the file is moved to the directory that the disk is different by the MOVE method under the following conditions, content of moved file is not correct. 373kwsk@…
Description

When the file is moved to the directory that the disk is different by the MOVE method under the following conditions, content of moved file is not correct.

  • OS: CentOS 7.4
  • Nginx Version: 1.12.2
# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/vda1        30G  1.4G   29G   5% /
devtmpfs        899M     0  899M   0% /dev
tmpfs           920M     0  920M   0% /dev/shm
tmpfs           920M   17M  904M   2% /run
tmpfs           920M     0  920M   0% /sys/fs/cgroup
/dev/vdb1        50G   33M   50G   1% /ext_disk
tmpfs           184M     0  184M   0% /run/user/1000
# nginx
# ps auxf | grep nginx
root     18826  0.0  0.0 112660   972 pts/1    S+   02:45   0:00  |                       \_ grep --color=auto nginx
root     18797  0.0  0.0  46432   988 ?        Ss   02:17   0:00 nginx: master process nginx
nginx    18798  0.0  0.1  46840  2212 ?        S    02:17   0:00  \_ nginx: worker process
# cd /var/lib/nginx
# ls -l
total 0
lrwxrwxrwx. 1 root  root  14 May 15 07:50 dest -> /ext_disk/dest
drwxr-xr-x. 2 nginx nginx 22 May 16 02:29 source
drwxr-xr-x. 2 nginx nginx  6 May 15 07:35 tmp
# ls -l source/.
total 4
-rw-r--r--. 1 nginx nginx 5 May 16 02:29 move.txt
# cat source/move.txt
move
# ls -l dest/.
total 0
# curl -XMOVE http://localhost:8080/source/move.txt -H Destination:/dest/move.txt
# ls -l source/.
total 0
# ls -l dest/.
total 4
----------. 1 nginx nginx 5 May 16 02:33 move.txt
# cat dest/move.txt
move

I have attached the configuration file, the access log, and the error log at the debug level.

I expected that the permissions of "dest/move.txt" and "source/move.txt" were equal after MOVE had been done. However, the permission of "dest/move.txt" is 000("----------"). What should I do to get the expected result?

#1354 wontfix add another conditional to nginx.spec.in to support fedora builds 3van@…
Description

use_systemd already gets defined for builds on Fedora, so the only other change is to add it to the if block for RHEL 7:

--- ./a/rpm/SPECS/nginx.spec.in
+++ ./b/rpm/SPECS/nginx.spec.in
@@ -25,7 +25,7 @@
 BuildRequires: openssl-devel >= 1.0.1
 %endif
 
-%if 0%{?rhel} == 7
+%if 0%{?rhel} == 7 || 0{?fedora} >= 18
 %define _group System Environment/Daemons
 %define epoch 1
 Epoch: %{epoch}

Without this, builds fail in a sandboxed environment due to the missing OpenSSL dependency.

#1105 invalid Unknown directive "init_by_lua" 5290charlie@…
Description

This directive line has been part of our config for some time. It had no problems as of last night (running on nginx v1.11.3). After rebuilding server today, nginx was version 1.11.5 and will not start giving the following error:

2016/10/13 13:52:45 [emerg] 4977#4977: unknown directive "init_by_lua" in /path/to/conf/file:LINE_NO

The line in the conf file is for loading cjson:

init_by_lua 'cjson = require "cjson"';

The only change (I know of) since last night, is nginx version 1.11.3 -> 1.11.5

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.