Guest User

Untitled

a guest
Mar 9th, 2018
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.78 KB | None | 0 0
  1. # This is LXC container
  2. # For test, only this (oncoming)node2, not other nodes or devices
  3. # node2 is dir in /storage/swift/node2 path - look below for "tree"
  4.  
  5. cd /etc/swift
  6. swift-ring-builder account.builder create 10 1 1
  7. swift-ring-builder account.builder add --region 1 --zone 1 --ip 192.168.224.240 --port 6202 --device node2 --weight 100
  8. swift-ring-builder account.builder rebalance
  9.  
  10. swift-ring-builder container.builder create 10 1 1
  11. swift-ring-builder container.builder add --region 1 --zone 1 --ip 192.168.224.240 --port 6201 --device node2 --weight 100
  12. swift-ring-builder container.builder rebalance
  13.  
  14. swift-ring-builder object.builder create 10 1 1
  15. swift-ring-builder object.builder add --region 1 --zone 1 --ip 192.168.224.240 --port 6200 --device node2 --weight 100
  16. swift-ring-builder object.builder rebalance
  17.  
  18. cat /etc/swift/account-server.conf | grep device
  19. devices = /storage/swift
  20.  
  21. cat /etc/swift/container-server.conf | grep devices
  22. devices = /storage/swift
  23.  
  24. cat /etc/swift/object-server.conf | grep devices
  25. devices = /storage/swift
  26.  
  27. tree /storage/
  28. /storage/
  29. └── swift
  30. └── node2
  31.  
  32. df -h
  33. Filesystem Size Used Avail Use% Mounted on
  34. /dev/mapper/data-swift 2.0T 3.4G 2.0T 1% /
  35. none 492K 0 492K 0% /dev
  36. tmpfs 2.0G 4.0K 2.0G 1% /dev/shm
  37. tmpfs 2.0G 8.1M 2.0G 1% /run
  38. tmpfs 5.0M 0 5.0M 0% /run/lock
  39. tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup
  40. tmpfs 393M 0 393M 0% /run/user/0
  41.  
  42. ls -l /etc/swift/
  43. total 192
  44. -rw-r--r-- 1 root swift 4727 Mar 9 15:43 account.builder
  45. -rw-r--r-- 1 root swift 197 Mar 9 15:43 account.ring.gz
  46. -rw-r--r-- 1 root swift 9770 Mar 9 16:44 account-server.conf
  47. -rw-r--r-- 1 root swift 9777 Mar 9 13:17 account-server.conf.dist
  48. drwxr-xr-x 2 root swift 315 Mar 9 15:45 backups
  49. -rw-r--r-- 1 root swift 4727 Mar 9 15:44 container.builder
  50. -rw-r--r-- 1 root swift 198 Mar 9 15:44 container.ring.gz
  51. -rw-r--r-- 1 root swift 11022 Mar 9 16:44 container-server.conf
  52. -rw-r--r-- 1 root swift 11028 Mar 9 13:30 container-server.conf.dist
  53. -rw-r--r-- 1 root swift 4727 Mar 9 15:45 object.builder
  54. -rw-r--r-- 1 root swift 195 Mar 9 15:45 object.ring.gz
  55. -rw-r--r-- 1 root swift 18171 Mar 9 16:45 object-server.conf
  56. -rw-r--r-- 1 root swift 18178 Mar 9 13:42 object-server.conf.dist
  57. -rw-r--r-- 1 root swift 41660 Mar 9 16:45 proxy-server.conf
  58. -rw-r--r-- 1 root swift 1537 Mar 9 16:00 swift-cert.crt
  59. -rw------- 1 root swift 1704 Mar 9 16:00 swift-cert.key
  60. -rw-r--r-- 1 root swift 7905 Mar 9 16:45 swift.conf
  61. -rw-r--r-- 1 root swift 7894 Mar 9 15:50 swift.conf.dist
  62.  
  63. >>> ls -l /storage/
  64. total 0
  65. drwxrwxrwx 3 swift swift 19 Mar 9 11:26 swift
  66. >>> ls -l /storage/swift/
  67. total 0
  68. drwxrwxrwx 2 swift swift 6 Mar 9 15:22 node2
  69. >>> ls -l /storage/swift/node2/
  70. total 0
  71. >>>
  72.  
  73. ls -l /var/log/swift/
  74. total 12
  75. -rw-r----- 1 root adm 8770 Mar 9 16:48 proxy.log
  76.  
  77. >>> cat /var/log/swift/proxy.log
  78. Mar 9 16:47:59 storage2 swift-proxy-server[484]: Traceback (most recent call last):
  79. Mar 9 16:47:59 storage2 swift-proxy-server[484]: File "/usr/bin/swift-proxy-server", line 23, in <module>
  80. Mar 9 16:47:59 storage2 swift-proxy-server[484]: sys.exit(run_wsgi(conf_file, 'proxy-server', **options))
  81. Mar 9 16:47:59 storage2 swift-proxy-server[484]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 898, in run_wsgi
  82. Mar 9 16:47:59 storage2 swift-proxy-server[484]: error_msg = strategy.bind_ports()
  83. Mar 9 16:47:59 storage2 swift-proxy-server[484]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 490, in bind_ports
  84. Mar 9 16:47:59 storage2 swift-proxy-server[484]: self.sock = get_socket(self.conf)
  85. Mar 9 16:47:59 storage2 swift-proxy-server[484]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 198, in get_socket
  86. Mar 9 16:47:59 storage2 swift-proxy-server[484]: keyfile=conf['key_file'])
  87. Mar 9 16:47:59 storage2 swift-proxy-server[484]: File "/usr/lib/python2.7/dist-packages/eventlet/green/ssl.py", line 348, in wrap_socket
  88. Mar 9 16:47:59 storage2 swift-proxy-server[484]: return GreenSSLSocket(sock, *a, **kw)
  89. Mar 9 16:47:59 storage2 swift-proxy-server[484]: File "/usr/lib/python2.7/dist-packages/eventlet/green/ssl.py", line 68, in __init__
  90. Mar 9 16:47:59 storage2 swift-proxy-server[484]: ca_certs, do_handshake_on_connect and six.PY2, *args, **kw)
  91. Mar 9 16:47:59 storage2 swift-proxy-server[484]: File "/usr/lib/python2.7/ssl.py", line 554, in __init__
  92. Mar 9 16:47:59 storage2 swift-proxy-server[484]: self._context.load_cert_chain(certfile, keyfile)
  93. Mar 9 16:47:59 storage2 swift-proxy-server[484]: IOError: [Errno 13] Permission denied
  94. Mar 9 16:47:59 storage2 swift-proxy-server[509]: Traceback (most recent call last):
  95. Mar 9 16:47:59 storage2 swift-proxy-server[509]: File "/usr/bin/swift-proxy-server", line 23, in <module>
  96. Mar 9 16:47:59 storage2 swift-proxy-server[509]: sys.exit(run_wsgi(conf_file, 'proxy-server', **options))
  97. Mar 9 16:47:59 storage2 swift-proxy-server[509]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 898, in run_wsgi
  98. Mar 9 16:47:59 storage2 swift-proxy-server[509]: error_msg = strategy.bind_ports()
  99. Mar 9 16:47:59 storage2 swift-proxy-server[509]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 490, in bind_ports
  100. Mar 9 16:47:59 storage2 swift-proxy-server[509]: self.sock = get_socket(self.conf)
  101. Mar 9 16:47:59 storage2 swift-proxy-server[509]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 198, in get_socket
  102. Mar 9 16:47:59 storage2 swift-proxy-server[509]: keyfile=conf['key_file'])
  103. Mar 9 16:47:59 storage2 swift-proxy-server[509]: File "/usr/lib/python2.7/dist-packages/eventlet/green/ssl.py", line 348, in wrap_socket
  104. Mar 9 16:47:59 storage2 swift-proxy-server[509]: return GreenSSLSocket(sock, *a, **kw)
  105. Mar 9 16:47:59 storage2 swift-proxy-server[509]: File "/usr/lib/python2.7/dist-packages/eventlet/green/ssl.py", line 68, in __init__
  106. Mar 9 16:47:59 storage2 swift-proxy-server[509]: ca_certs, do_handshake_on_connect and six.PY2, *args, **kw)
  107. Mar 9 16:47:59 storage2 swift-proxy-server[509]: File "/usr/lib/python2.7/ssl.py", line 554, in __init__
  108. Mar 9 16:47:59 storage2 swift-proxy-server[509]: self._context.load_cert_chain(certfile, keyfile)
  109. Mar 9 16:47:59 storage2 swift-proxy-server[509]: IOError: [Errno 13] Permission denied
  110. Mar 9 16:48:00 storage2 swift-proxy-server[517]: Traceback (most recent call last):
  111. Mar 9 16:48:00 storage2 swift-proxy-server[517]: File "/usr/bin/swift-proxy-server", line 23, in <module>
  112. Mar 9 16:48:00 storage2 swift-proxy-server[517]: sys.exit(run_wsgi(conf_file, 'proxy-server', **options))
  113. Mar 9 16:48:00 storage2 swift-proxy-server[517]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 898, in run_wsgi
  114. Mar 9 16:48:00 storage2 swift-proxy-server[517]: error_msg = strategy.bind_ports()
  115. Mar 9 16:48:00 storage2 swift-proxy-server[517]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 490, in bind_ports
  116. Mar 9 16:48:00 storage2 swift-proxy-server[517]: self.sock = get_socket(self.conf)
  117. Mar 9 16:48:00 storage2 swift-proxy-server[517]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 198, in get_socket
  118. Mar 9 16:48:00 storage2 swift-proxy-server[517]: keyfile=conf['key_file'])
  119. Mar 9 16:48:00 storage2 swift-proxy-server[517]: File "/usr/lib/python2.7/dist-packages/eventlet/green/ssl.py", line 348, in wrap_socket
  120. Mar 9 16:48:00 storage2 swift-proxy-server[517]: return GreenSSLSocket(sock, *a, **kw)
  121. Mar 9 16:48:00 storage2 swift-proxy-server[517]: File "/usr/lib/python2.7/dist-packages/eventlet/green/ssl.py", line 68, in __init__
  122. Mar 9 16:48:00 storage2 swift-proxy-server[517]: ca_certs, do_handshake_on_connect and six.PY2, *args, **kw)
  123. Mar 9 16:48:00 storage2 swift-proxy-server[517]: File "/usr/lib/python2.7/ssl.py", line 554, in __init__
  124. Mar 9 16:48:00 storage2 swift-proxy-server[517]: self._context.load_cert_chain(certfile, keyfile)
  125. Mar 9 16:48:00 storage2 swift-proxy-server[517]: IOError: [Errno 13] Permission denied
  126. Mar 9 16:48:00 storage2 swift-proxy-server[526]: Traceback (most recent call last):
  127. Mar 9 16:48:00 storage2 swift-proxy-server[526]: File "/usr/bin/swift-proxy-server", line 23, in <module>
  128. Mar 9 16:48:00 storage2 swift-proxy-server[526]: sys.exit(run_wsgi(conf_file, 'proxy-server', **options))
  129. Mar 9 16:48:00 storage2 swift-proxy-server[526]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 898, in run_wsgi
  130. Mar 9 16:48:00 storage2 swift-proxy-server[526]: error_msg = strategy.bind_ports()
  131. Mar 9 16:48:00 storage2 swift-proxy-server[526]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 490, in bind_ports
  132. Mar 9 16:48:00 storage2 swift-proxy-server[526]: self.sock = get_socket(self.conf)
  133. Mar 9 16:48:00 storage2 swift-proxy-server[526]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 198, in get_socket
  134. Mar 9 16:48:00 storage2 swift-proxy-server[526]: keyfile=conf['key_file'])
  135. Mar 9 16:48:00 storage2 swift-proxy-server[526]: File "/usr/lib/python2.7/dist-packages/eventlet/green/ssl.py", line 348, in wrap_socket
  136. Mar 9 16:48:00 storage2 swift-proxy-server[526]: return GreenSSLSocket(sock, *a, **kw)
  137. Mar 9 16:48:00 storage2 swift-proxy-server[526]: File "/usr/lib/python2.7/dist-packages/eventlet/green/ssl.py", line 68, in __init__
  138. Mar 9 16:48:00 storage2 swift-proxy-server[526]: ca_certs, do_handshake_on_connect and six.PY2, *args, **kw)
  139. Mar 9 16:48:00 storage2 swift-proxy-server[526]: File "/usr/lib/python2.7/ssl.py", line 554, in __init__
  140. Mar 9 16:48:00 storage2 swift-proxy-server[526]: self._context.load_cert_chain(certfile, keyfile)
  141. Mar 9 16:48:00 storage2 swift-proxy-server[526]: IOError: [Errno 13] Permission denied
  142. Mar 9 16:48:01 storage2 swift-proxy-server[534]: Traceback (most recent call last):
  143. Mar 9 16:48:01 storage2 swift-proxy-server[534]: File "/usr/bin/swift-proxy-server", line 23, in <module>
  144. Mar 9 16:48:01 storage2 swift-proxy-server[534]: sys.exit(run_wsgi(conf_file, 'proxy-server', **options))
  145. Mar 9 16:48:01 storage2 swift-proxy-server[534]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 898, in run_wsgi
  146. Mar 9 16:48:01 storage2 swift-proxy-server[534]: error_msg = strategy.bind_ports()
  147. Mar 9 16:48:01 storage2 swift-proxy-server[534]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 490, in bind_ports
  148. Mar 9 16:48:01 storage2 swift-proxy-server[534]: self.sock = get_socket(self.conf)
  149. Mar 9 16:48:01 storage2 swift-proxy-server[534]: File "/usr/lib/python2.7/dist-packages/swift/common/wsgi.py", line 198, in get_socket
  150. Mar 9 16:48:01 storage2 swift-proxy-server[534]: keyfile=conf['key_file'])
  151. Mar 9 16:48:01 storage2 swift-proxy-server[534]: File "/usr/lib/python2.7/dist-packages/eventlet/green/ssl.py", line 348, in wrap_socket
  152. Mar 9 16:48:01 storage2 swift-proxy-server[534]: return GreenSSLSocket(sock, *a, **kw)
  153. Mar 9 16:48:01 storage2 swift-proxy-server[534]: File "/usr/lib/python2.7/dist-packages/eventlet/green/ssl.py", line 68, in __init__
  154. Mar 9 16:48:01 storage2 swift-proxy-server[534]: ca_certs, do_handshake_on_connect and six.PY2, *args, **kw)
  155. Mar 9 16:48:01 storage2 swift-proxy-server[534]: File "/usr/lib/python2.7/ssl.py", line 554, in __init__
  156. Mar 9 16:48:01 storage2 swift-proxy-server[534]: self._context.load_cert_chain(certfile, keyfile)
  157. Mar 9 16:48:01 storage2 swift-proxy-server[534]: IOError: [Errno 13] Permission denied
  158.  
  159. cat /var/log/syslog
  160. Mar 9 16:47:24 storage2 systemd[1]: Removed slice system-getty.slice.
  161. Mar 9 16:47:24 storage2 systemd[1]: Stopping Session 437 of user root.
  162. Mar 9 16:47:24 storage2 systemd[1]: Stopping User Manager for UID 0...
  163. Mar 9 16:47:24 storage2 systemd[1]: Stopped target Timers.
  164. Mar 9 16:47:24 storage2 systemd[1]: Stopped Daily apt upgrade and clean activities.
  165. Mar 9 16:47:24 storage2 systemd-memcached-wrapper[169]: Signal handled: Terminated.
  166. Mar 9 16:47:24 storage2 systemd[1]: Stopped Daily apt download activities.
  167. Mar 9 16:47:24 storage2 systemd[1]: Stopped target System Time Synchronized.
  168. Mar 9 16:47:24 storage2 systemd[1]: Stopped Daily Cleanup of Temporary Directories.
  169. Mar 9 16:47:25 storage2 systemd[1]: systemd-journal-flush.service: Failed to reset devices.list: Operation not permitted
  170. Mar 9 16:47:25 storage2 systemd[1]: Starting Flush Journal to Persistent Storage...
  171. Mar 9 16:47:25 storage2 systemd[1]: Started Flush Journal to Persistent Storage.
  172. Mar 9 16:47:25 storage2 systemd[1]: systemd-tmpfiles-setup.service: Failed to reset devices.list: Operation not permitted
  173. Mar 9 16:47:25 storage2 systemd[1]: Starting Create Volatile Files and Directories...
  174. Mar 9 16:47:25 storage2 systemd[1]: systemd-journal-flush.service: Failed to reset devices.list: Operation not permitted
  175. Mar 9 16:47:25 storage2 systemd[1]: Started Create Volatile Files and Directories.
  176. Mar 9 16:47:25 storage2 systemd[1]: Reached target System Time Synchronized.
  177. Mar 9 16:47:25 storage2 systemd[1]: systemd-update-utmp.service: Failed to reset devices.list: Operation not permitted
  178. Mar 9 16:47:25 storage2 systemd[1]: Starting Update UTMP about System Boot/Shutdown...
  179. Mar 9 16:47:25 storage2 systemd[1]: systemd-tmpfiles-setup.service: Failed to reset devices.list: Operation not permitted
  180. Mar 9 16:47:25 storage2 systemd[1]: Started Update UTMP about System Boot/Shutdown.
  181. Mar 9 16:47:25 storage2 systemd[1]: Reached target System Initialization.
  182. Mar 9 16:47:25 storage2 systemd[1]: Started Daily Cleanup of Temporary Directories.
  183. Mar 9 16:47:25 storage2 systemd[1]: apt-daily.timer: Adding 5h 38min 40.130379s random time.
  184. Mar 9 16:47:25 storage2 systemd[1]: Started Daily apt download activities.
  185. Mar 9 16:47:25 storage2 systemd[1]: apt-daily-upgrade.timer: Adding 43min 14.530095s random time.
  186. Mar 9 16:47:25 storage2 systemd[1]: Started Daily apt upgrade and clean activities.
  187. Mar 9 16:47:25 storage2 systemd[1]: Reached target Timers.
  188. Mar 9 16:47:25 storage2 systemd[1]: Listening on D-Bus System Message Bus Socket.
  189. Mar 9 16:47:25 storage2 systemd[1]: Reached target Sockets.
  190. Mar 9 16:47:25 storage2 systemd[1]: Reached target Basic System.
  191. Mar 9 16:47:25 storage2 systemd[1]: swift-account.service: Failed to reset devices.list: Operation not permitted
  192. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift account server...
  193. Mar 9 16:47:25 storage2 systemd[1]: swift-container-auditor.service: Failed to reset devices.list: Operation not permitted
  194. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift container auditor...
  195. Mar 9 16:47:25 storage2 systemd[1]: swift-object.service: Failed to reset devices.list: Operation not permitted
  196. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift object server...
  197. Mar 9 16:47:25 storage2 systemd[1]: swift-account-auditor.service: Failed to reset devices.list: Operation not permitted
  198. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift account auditor...
  199. Mar 9 16:47:25 storage2 systemd[1]: systemd-logind.service: Failed to reset devices.list: Operation not permitted
  200. Mar 9 16:47:25 storage2 systemd[1]: Starting Login Service...
  201. Mar 9 16:47:25 storage2 systemd[1]: swift-container.service: Failed to reset devices.list: Operation not permitted
  202. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift container server...
  203. Mar 9 16:47:25 storage2 systemd[1]: swift-object-reconstructor.service: Failed to reset devices.list: Operation not permitted
  204. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift object reconstructor...
  205. Mar 9 16:47:25 storage2 systemd[1]: swift-container-updater.service: Failed to reset devices.list: Operation not permitted
  206. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift container updater...
  207. Mar 9 16:47:25 storage2 systemd[1]: cron.service: Failed to reset devices.list: Operation not permitted
  208. Mar 9 16:47:25 storage2 systemd[1]: Started Regular background program processing daemon.
  209. Mar 9 16:47:25 storage2 systemd[1]: rsync.service: Failed to reset devices.list: Operation not permitted
  210. Mar 9 16:47:25 storage2 systemd[1]: Started fast remote file copy program daemon.
  211. Mar 9 16:47:25 storage2 systemd[1]: swift-object-auditor.service: Failed to reset devices.list: Operation not permitted
  212. Mar 9 16:47:25 storage2 cron[82]: (CRON) INFO (pidfile fd = 3)
  213. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift object auditor...
  214. Mar 9 16:47:25 storage2 systemd[1]: swift-container-sync.service: Failed to reset devices.list: Operation not permitted
  215. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift container sync...
  216. Mar 9 16:47:25 storage2 cron[82]: (CRON) INFO (Running @reboot jobs)
  217. Mar 9 16:47:25 storage2 systemd[1]: dbus.service: Failed to reset devices.list: Operation not permitted
  218. Mar 9 16:47:25 storage2 systemd[1]: Started D-Bus System Message Bus.
  219. Mar 9 16:47:25 storage2 systemd[1]: swift-account-replicator.service: Failed to reset devices.list: Operation not permitted
  220. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift account replicator...
  221. Mar 9 16:47:25 storage2 systemd[1]: swift-account-reaper.service: Failed to reset devices.list: Operation not permitted
  222. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift account reaper...
  223. Mar 9 16:47:25 storage2 systemd[1]: swift-object-replicator.service: Failed to reset devices.list: Operation not permitted
  224. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift object replicator...
  225. Mar 9 16:47:25 storage2 systemd[1]: swift-container-replicator.service: Failed to reset devices.list: Operation not permitted
  226. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift container replicator...
  227. Mar 9 16:47:25 storage2 systemd[1]: swift-object-updater.service: Failed to reset devices.list: Operation not permitted
  228. Mar 9 16:47:25 storage2 systemd[1]: Starting OpenStack Swift object updater...
  229. Mar 9 16:47:25 storage2 systemd[1]: rsyslog.service: Failed to reset devices.list: Operation not permitted
  230. Mar 9 16:47:25 storage2 systemd[1]: Starting System Logging Service...
  231. Mar 9 16:47:25 storage2 systemd[1]: systemd-update-utmp.service: Failed to reset devices.list: Operation not permitted
  232. Mar 9 16:47:25 storage2 liblogging-stdlog: Could not open output pipe '/dev/xconsole':: No such file or directory [v8.24.0 try http://www.rsyslog.com/e/2039 ]
  233. Mar 9 16:47:25 storage2 liblogging-stdlog: action 'action 22' suspended, next retry is Fri Mar 9 16:47:55 2018 [v8.24.0 try http://www.rsyslog.com/e/2007 ]
  234. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift container auditor.
  235. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift object server.
  236. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift account auditor.
  237. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift account server.
  238. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift object reconstructor.
  239. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift container updater.
  240. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift object auditor.
  241. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift container sync.
  242. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift account replicator.
  243. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift account reaper.
  244. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift object replicator.
  245. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift container replicator.
  246. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift object updater.
  247. Mar 9 16:47:25 storage2 systemd[1]: Started System Logging Service.
  248. Mar 9 16:47:25 storage2 systemd[1]: Started OpenStack Swift container server.
  249. Mar 9 16:47:25 storage2 systemd[1]: Started Login Service.
  250. Mar 9 16:47:26 storage2 systemd[1]: Started Raise network interfaces.
  251. Mar 9 16:47:26 storage2 systemd[1]: Reached target Network.
  252. Mar 9 16:47:26 storage2 systemd[1]: memcached.service: Failed to reset devices.list: Operation not permitted
  253. Mar 9 16:47:26 storage2 systemd[1]: Started memcached daemon.
  254. Mar 9 16:47:26 storage2 systemd[1]: systemd-user-sessions.service: Failed to reset devices.list: Operation not permitted
  255. Mar 9 16:47:26 storage2 systemd[1]: Starting Permit User Sessions...
  256. Mar 9 16:47:26 storage2 systemd[1]: Reached target Network is Online.
  257. Mar 9 16:47:26 storage2 systemd[1]: Starting Postfix Mail Transport Agent (instance -)...
  258. Mar 9 16:47:26 storage2 systemd[1]: rc-local.service: Failed to reset devices.list: Operation not permitted
  259. Mar 9 16:47:26 storage2 systemd[1]: Starting /etc/rc.local Compatibility...
  260. Mar 9 16:47:26 storage2 systemd[1]: ssh.service: Failed to reset devices.list: Operation not permitted
  261. Mar 9 16:47:26 storage2 systemd[1]: Starting OpenBSD Secure Shell server...
  262. Mar 9 16:47:26 storage2 systemd[1]: networking.service: Failed to reset devices.list: Operation not permitted
  263. Mar 9 16:47:26 storage2 systemd[1]: Started Permit User Sessions.
  264. Mar 9 16:47:26 storage2 systemd[1]: Started /etc/rc.local Compatibility.
  265. Mar 9 16:47:26 storage2 systemd[1]: Started Container Getty on /dev/pts/2.
  266. Mar 9 16:47:26 storage2 systemd[1]: Started Container Getty on /dev/pts/0.
  267. Mar 9 16:47:26 storage2 systemd[1]: Started Container Getty on /dev/pts/1.
  268. Mar 9 16:47:26 storage2 systemd[1]: Started Container Getty on /dev/pts/3.
  269. Mar 9 16:47:26 storage2 systemd[1]: console-getty.service: Failed to reset devices.list: Operation not permitted
  270. Mar 9 16:47:26 storage2 systemd[1]: Started Console Getty.
  271. Mar 9 16:47:26 storage2 systemd[1]: Reached target Login Prompts.
  272. Mar 9 16:47:26 storage2 systemd[1]: systemd-user-sessions.service: Failed to reset devices.list: Operation not permitted
  273. Mar 9 16:47:26 storage2 systemd[1]: rc-local.service: Failed to reset devices.list: Operation not permitted
  274. Mar 9 16:47:26 storage2 sshd[173]: /etc/ssh/sshd_config line 18: Deprecated option KeyRegenerationInterval
  275. Mar 9 16:47:26 storage2 sshd[173]: /etc/ssh/sshd_config line 19: Deprecated option ServerKeyBits
  276. Mar 9 16:47:26 storage2 sshd[173]: /etc/ssh/sshd_config line 30: Deprecated option RSAAuthentication
  277. Mar 9 16:47:26 storage2 sshd[173]: /etc/ssh/sshd_config line 37: Deprecated option RhostsRSAAuthentication
  278. Mar 9 16:47:26 storage2 sshd[185]: /etc/ssh/sshd_config line 18: Deprecated option KeyRegenerationInterval
  279. Mar 9 16:47:26 storage2 sshd[185]: /etc/ssh/sshd_config line 19: Deprecated option ServerKeyBits
  280. Mar 9 16:47:26 storage2 sshd[185]: /etc/ssh/sshd_config line 30: Deprecated option RSAAuthentication
  281. Mar 9 16:47:26 storage2 sshd[185]: /etc/ssh/sshd_config line 37: Deprecated option RhostsRSAAuthentication
  282. Mar 9 16:47:26 storage2 systemd[1]: Started OpenBSD Secure Shell server.
  283. Mar 9 16:47:26 storage2 account-server: Started child 226
  284. Mar 9 16:47:26 storage2 account-server: Started child 227
  285. Mar 9 16:47:26 storage2 account-server: Started child 228
  286. Mar 9 16:47:26 storage2 account-server: Started child 231
  287. Mar 9 16:47:26 storage2 container-server: Started child 263
  288. Mar 9 16:47:26 storage2 container-server: Started child 264
  289. Mar 9 16:47:26 storage2 container-server: Started child 265
  290. Mar 9 16:47:26 storage2 container-server: Started child 271
  291. Mar 9 16:47:26 storage2 object-server: Started child 295
  292. Mar 9 16:47:26 storage2 object-server: Started child 296
  293. Mar 9 16:47:26 storage2 object-server: Started child 297
  294. Mar 9 16:47:26 storage2 object-server: Started child 298
  295. Mar 9 16:47:26 storage2 container-sync: Configuration option internal_client_conf_path not defined. Using default configuration, See internal-client.conf-sample for options
  296. Mar 9 16:47:27 storage2 object-auditor: Begin object audit "forever" mode (ALL)
  297. Mar 9 16:47:27 storage2 object-auditor: Object audit (ALL) "forever" mode completed: 0.00s. Total quarantined: 0, Total errors: 0, Total files/sec: 0.00, Total bytes/sec: 0.00, Auditing time: 0.00, Rate: 0.00
  298. Mar 9 16:47:27 storage2 object-auditor: Begin object audit "forever" mode (ZBF)
  299. Mar 9 16:47:27 storage2 object-auditor: Object audit (ZBF) "forever" mode completed: 0.00s. Total quarantined: 0, Total errors: 0, Total files/sec: 0.00, Total bytes/sec: 0.00, Auditing time: 0.00, Rate: 0.00
  300. Mar 9 16:47:27 storage2 object-reconstructor: Starting object reconstructor in daemon mode.
  301. Mar 9 16:47:27 storage2 object-reconstructor: Starting object reconstruction pass.
  302. Mar 9 16:47:27 storage2 object-reconstructor: Nothing reconstructed for 0.000503063201904 seconds.
  303. Mar 9 16:47:27 storage2 object-reconstructor: Object reconstruction complete. (0.00 minutes)
  304. Mar 9 16:47:27 storage2 object-replicator: Starting object replicator in daemon mode.
  305. Mar 9 16:47:27 storage2 object-replicator: Starting object replication pass.
  306. Mar 9 16:47:27 storage2 object-replicator: node2 is not mounted
  307. Mar 9 16:47:27 storage2 object-replicator: Nothing replicated for 0.00128817558289 seconds.
  308. Mar 9 16:47:27 storage2 object-replicator: Object replication complete. (0.00 minutes)
  309. Mar 9 16:47:27 storage2 postfix/postfix-script[427]: starting the Postfix mail system
  310. Mar 9 16:47:27 storage2 postfix/master[429]: daemon started -- version 3.1.6, configuration /etc/postfix
  311. Mar 9 16:47:27 storage2 systemd[1]: Started Postfix Mail Transport Agent (instance -).
  312. Mar 9 16:47:27 storage2 systemd[1]: postfix.service: Failed to reset devices.list: Operation not permitted
  313. Mar 9 16:47:27 storage2 systemd[1]: Starting Postfix Mail Transport Agent...
  314. Mar 9 16:47:27 storage2 systemd[1]: Started Postfix Mail Transport Agent.
  315. Mar 9 16:47:27 storage2 systemd[1]: Reached target Multi-User System.
  316. Mar 9 16:47:27 storage2 systemd[1]: Reached target Graphical Interface.
  317. Mar 9 16:47:27 storage2 systemd[1]: systemd-update-utmp-runlevel.service: Failed to reset devices.list: Operation not permitted
  318. Mar 9 16:47:27 storage2 systemd[1]: Starting Update UTMP about System Runlevel Changes...
  319. Mar 9 16:47:27 storage2 systemd[1]: postfix.service: Failed to reset devices.list: Operation not permitted
  320. Mar 9 16:47:27 storage2 systemd[1]: Started Update UTMP about System Runlevel Changes.
  321. Mar 9 16:47:27 storage2 systemd[1]: Startup finished in 1.821s.
  322. Mar 9 16:47:32 storage2 systemd[1]: user.slice: Failed to reset devices.list: Operation not permitted
  323. Mar 9 16:47:32 storage2 systemd[1]: Created slice User Slice of root.
  324. Mar 9 16:47:32 storage2 systemd[1]: user.slice: Failed to reset devices.list: Operation not permitted
  325. Mar 9 16:47:32 storage2 systemd[1]: user-0.slice: Failed to reset devices.list: Operation not permitted
  326. Mar 9 16:47:32 storage2 systemd[1]: [email protected]: Failed to reset devices.list: Operation not permitted
  327. Mar 9 16:47:32 storage2 systemd[1]: Starting User Manager for UID 0...
  328. Mar 9 16:47:32 storage2 systemd[1]: init.scope: Failed to reset devices.list: Operation not permitted
  329. Mar 9 16:47:32 storage2 systemd[1]: session-441.scope: Failed to reset devices.list: Operation not permitted
  330. Mar 9 16:47:32 storage2 systemd[1]: Started Session 441 of user root.
  331. Mar 9 16:47:32 storage2 systemd[436]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
  332. Mar 9 16:47:32 storage2 systemd[436]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
  333. Mar 9 16:47:32 storage2 systemd[436]: Reached target Paths.
  334. Mar 9 16:47:32 storage2 systemd[436]: Listening on GnuPG network certificate management daemon.
  335. Mar 9 16:47:32 storage2 systemd[436]: Listening on GnuPG cryptographic agent and passphrase cache.
  336. Mar 9 16:47:32 storage2 systemd[436]: Listening on GnuPG cryptographic agent (access for web browsers).
  337. Mar 9 16:47:32 storage2 systemd[436]: Reached target Sockets.
  338. Mar 9 16:47:32 storage2 systemd[436]: Reached target Timers.
  339. Mar 9 16:47:32 storage2 systemd[436]: Reached target Basic System.
  340. Mar 9 16:47:32 storage2 systemd[436]: Reached target Default.
  341. Mar 9 16:47:32 storage2 systemd[436]: Startup finished in 4ms.
  342. Mar 9 16:47:32 storage2 systemd[1]: Started User Manager for UID 0.
  343. Mar 9 16:47:48 storage2 container-replicator: Skipping node2 as it is not mounted
  344. Mar 9 16:47:48 storage2 container-replicator: Beginning replication run
  345. Mar 9 16:47:48 storage2 container-replicator: Replication run OVER
  346. Mar 9 16:47:48 storage2 container-replicator: Attempted to replicate 0 dbs in 0.00126 seconds (0.00000/s)
  347. Mar 9 16:47:48 storage2 container-replicator: Removed 0 dbs
  348. Mar 9 16:47:48 storage2 container-replicator: 0 successes, 1 failures
  349. Mar 9 16:47:48 storage2 container-replicator: no_change:0 ts_repl:0 diff:0 rsync:0 diff_capped:0 hashmatch:0 empty:0
  350. Mar 9 16:47:52 storage2 account-replicator: Skipping node2 as it is not mounted
  351. Mar 9 16:47:52 storage2 account-replicator: Beginning replication run
  352. Mar 9 16:47:52 storage2 account-replicator: Replication run OVER
  353. Mar 9 16:47:52 storage2 account-replicator: Attempted to replicate 0 dbs in 0.00122 seconds (0.00000/s)
  354. Mar 9 16:47:52 storage2 account-replicator: Removed 0 dbs
  355. Mar 9 16:47:52 storage2 account-replicator: 0 successes, 1 failures
  356. Mar 9 16:47:52 storage2 account-replicator: no_change:0 ts_repl:0 diff:0 rsync:0 diff_capped:0 hashmatch:0 empty:0
  357. Mar 9 16:47:57 storage2 object-reconstructor: Starting object reconstruction pass.
  358. Mar 9 16:47:57 storage2 object-reconstructor: Nothing reconstructed for 0.000626087188721 seconds.
  359. Mar 9 16:47:57 storage2 object-reconstructor: Object reconstruction complete. (0.00 minutes)
  360. Mar 9 16:47:57 storage2 object-auditor: Begin object audit "forever" mode (ZBF)
  361. Mar 9 16:47:57 storage2 object-auditor: Object audit (ZBF) "forever" mode completed: 0.00s. Total quarantined: 0, Total errors: 0, Total files/sec: 0.00, Total bytes/sec: 0.00, Auditing time: 0.00, Rate: 0.00
  362. Mar 9 16:47:57 storage2 object-auditor: Begin object audit "forever" mode (ALL)
  363. Mar 9 16:47:57 storage2 object-auditor: Object audit (ALL) "forever" mode completed: 0.00s. Total quarantined: 0, Total errors: 0, Total files/sec: 0.00, Total bytes/sec: 0.00, Auditing time: 0.00, Rate: 0.00
  364. Mar 9 16:47:57 storage2 object-replicator: Starting object replication pass.
  365. Mar 9 16:47:57 storage2 object-replicator: node2 is not mounted
  366. Mar 9 16:47:57 storage2 object-replicator: Nothing replicated for 0.00111389160156 seconds.
  367. Mar 9 16:47:57 storage2 object-replicator: Object replication complete. (0.00 minutes)
  368. Mar 9 16:47:58 storage2 systemd[1]: swift-proxy.service: Failed to reset devices.list: Operation not permitted
  369. Mar 9 16:47:58 storage2 systemd[1]: Starting OpenStack Swift proxy server...
  370. Mar 9 16:47:58 storage2 systemd[1]: run-user-0.mount: Failed to reset devices.list: Operation not permitted
  371. Mar 9 16:47:58 storage2 systemd[1]: Started OpenStack Swift proxy server.
  372. Mar 9 16:47:59 storage2 systemd[1]: swift-proxy.service: Main process exited, code=exited, status=1/FAILURE
  373. Mar 9 16:47:59 storage2 systemd[1]: swift-proxy.service: Unit entered failed state.
  374. Mar 9 16:47:59 storage2 systemd[1]: swift-proxy.service: Failed with result 'exit-code'.
  375. Mar 9 16:47:59 storage2 systemd[1]: swift-proxy.service: Service hold-off time over, scheduling restart.
  376. Mar 9 16:47:59 storage2 systemd[1]: Stopped OpenStack Swift proxy server.
  377. Mar 9 16:47:59 storage2 systemd[1]: swift-proxy.service: Failed to reset devices.list: Operation not permitted
  378. Mar 9 16:47:59 storage2 systemd[1]: Starting OpenStack Swift proxy server...
  379. Mar 9 16:47:59 storage2 systemd[1]: Started OpenStack Swift proxy server.
  380. Mar 9 16:47:59 storage2 systemd[1]: swift-proxy.service: Main process exited, code=exited, status=1/FAILURE
  381. Mar 9 16:47:59 storage2 systemd[1]: swift-proxy.service: Unit entered failed state.
  382. Mar 9 16:47:59 storage2 systemd[1]: swift-proxy.service: Failed with result 'exit-code'.
  383. Mar 9 16:48:00 storage2 systemd[1]: swift-proxy.service: Service hold-off time over, scheduling restart.
  384. Mar 9 16:48:00 storage2 systemd[1]: Stopped OpenStack Swift proxy server.
  385. Mar 9 16:48:00 storage2 systemd[1]: swift-proxy.service: Failed to reset devices.list: Operation not permitted
  386. Mar 9 16:48:00 storage2 systemd[1]: Starting OpenStack Swift proxy server...
  387. Mar 9 16:48:00 storage2 systemd[1]: Started OpenStack Swift proxy server.
  388. Mar 9 16:48:00 storage2 systemd[1]: swift-proxy.service: Main process exited, code=exited, status=1/FAILURE
  389. Mar 9 16:48:00 storage2 systemd[1]: swift-proxy.service: Unit entered failed state.
  390. Mar 9 16:48:00 storage2 systemd[1]: swift-proxy.service: Failed with result 'exit-code'.
  391. Mar 9 16:48:00 storage2 systemd[1]: swift-proxy.service: Service hold-off time over, scheduling restart.
  392. Mar 9 16:48:00 storage2 systemd[1]: Stopped OpenStack Swift proxy server.
  393. Mar 9 16:48:00 storage2 systemd[1]: swift-proxy.service: Failed to reset devices.list: Operation not permitted
  394. Mar 9 16:48:00 storage2 systemd[1]: Starting OpenStack Swift proxy server...
  395. Mar 9 16:48:00 storage2 systemd[1]: Started OpenStack Swift proxy server.
  396. Mar 9 16:48:00 storage2 systemd[1]: swift-proxy.service: Main process exited, code=exited, status=1/FAILURE
  397. Mar 9 16:48:00 storage2 systemd[1]: swift-proxy.service: Unit entered failed state.
  398. Mar 9 16:48:00 storage2 systemd[1]: swift-proxy.service: Failed with result 'exit-code'.
  399. Mar 9 16:48:01 storage2 systemd[1]: swift-proxy.service: Service hold-off time over, scheduling restart.
  400. Mar 9 16:48:01 storage2 systemd[1]: Stopped OpenStack Swift proxy server.
  401. Mar 9 16:48:01 storage2 systemd[1]: swift-proxy.service: Failed to reset devices.list: Operation not permitted
  402. Mar 9 16:48:01 storage2 systemd[1]: Starting OpenStack Swift proxy server...
  403. Mar 9 16:48:01 storage2 systemd[1]: Started OpenStack Swift proxy server.
  404. Mar 9 16:48:01 storage2 systemd[1]: swift-proxy.service: Main process exited, code=exited, status=1/FAILURE
  405. Mar 9 16:48:01 storage2 systemd[1]: swift-proxy.service: Unit entered failed state.
  406. Mar 9 16:48:01 storage2 systemd[1]: swift-proxy.service: Failed with result 'exit-code'.
  407. Mar 9 16:48:01 storage2 systemd[1]: swift-proxy.service: Service hold-off time over, scheduling restart.
  408. Mar 9 16:48:01 storage2 systemd[1]: Stopped OpenStack Swift proxy server.
  409. Mar 9 16:48:01 storage2 systemd[1]: swift-proxy.service: Start request repeated too quickly.
  410. Mar 9 16:48:01 storage2 systemd[1]: Failed to start OpenStack Swift proxy server.
  411. Mar 9 16:48:01 storage2 systemd[1]: swift-proxy.service: Unit entered failed state.
  412. Mar 9 16:48:01 storage2 systemd[1]: swift-proxy.service: Failed with result 'exit-code'.
  413. Mar 9 16:48:18 storage2 container-replicator: Skipping node2 as it is not mounted
  414. Mar 9 16:48:18 storage2 container-replicator: Beginning replication run
  415. Mar 9 16:48:18 storage2 container-replicator: Replication run OVER
  416. Mar 9 16:48:18 storage2 container-replicator: Attempted to replicate 0 dbs in 0.00101 seconds (0.00000/s)
  417. Mar 9 16:48:18 storage2 container-replicator: Removed 0 dbs
  418. Mar 9 16:48:18 storage2 container-replicator: 0 successes, 1 failures
  419. Mar 9 16:48:18 storage2 container-replicator: no_change:0 ts_repl:0 diff:0 rsync:0 diff_capped:0 hashmatch:0 empty:0
  420. Mar 9 16:48:22 storage2 account-replicator: Skipping node2 as it is not mounted
  421. Mar 9 16:48:22 storage2 account-replicator: Beginning replication run
  422. Mar 9 16:48:22 storage2 account-replicator: Replication run OVER
  423. Mar 9 16:48:22 storage2 account-replicator: Attempted to replicate 0 dbs in 0.00090 seconds (0.00000/s)
  424. Mar 9 16:48:22 storage2 account-replicator: Removed 0 dbs
  425. Mar 9 16:48:22 storage2 account-replicator: 0 successes, 1 failures
  426. Mar 9 16:48:22 storage2 account-replicator: no_change:0 ts_repl:0 diff:0 rsync:0 diff_capped:0 hashmatch:0 empty:0
  427. Mar 9 16:48:27 storage2 object-reconstructor: Starting object reconstruction pass.
  428. Mar 9 16:48:27 storage2 object-reconstructor: Nothing reconstructed for 0.000635862350464 seconds.
  429. Mar 9 16:48:27 storage2 object-reconstructor: Object reconstruction complete. (0.00 minutes)
  430. Mar 9 16:48:27 storage2 object-replicator: Starting object replication pass.
  431. Mar 9 16:48:27 storage2 object-replicator: node2 is not mounted
  432. Mar 9 16:48:27 storage2 object-replicator: Nothing replicated for 0.00112390518188 seconds.
  433. Mar 9 16:48:27 storage2 object-replicator: Object replication complete. (0.00 minutes)
  434. Mar 9 16:48:27 storage2 object-auditor: Begin object audit "forever" mode (ZBF)
  435. Mar 9 16:48:27 storage2 object-auditor: Object audit (ZBF) "forever" mode completed: 0.00s. Total quarantined: 0, Total errors: 0, Total files/sec: 0.00, Total bytes/sec: 0.00, Auditing time: 0.00, Rate: 0.00
  436. Mar 9 16:48:48 storage2 container-replicator: Skipping node2 as it is not mounted
  437. Mar 9 16:48:48 storage2 container-replicator: Beginning replication run
  438. Mar 9 16:48:48 storage2 container-replicator: Replication run OVER
  439. Mar 9 16:48:48 storage2 container-replicator: Attempted to replicate 0 dbs in 0.00096 seconds (0.00000/s)
  440. Mar 9 16:48:48 storage2 container-replicator: Removed 0 dbs
  441. Mar 9 16:48:48 storage2 container-replicator: 0 successes, 1 failures
  442. Mar 9 16:48:48 storage2 container-replicator: no_change:0 ts_repl:0 diff:0 rsync:0 diff_capped:0 hashmatch:0 empty:0
  443. Mar 9 16:48:52 storage2 account-replicator: Skipping node2 as it is not mounted
  444. Mar 9 16:48:52 storage2 account-replicator: Beginning replication run
  445. Mar 9 16:48:52 storage2 account-replicator: Replication run OVER
  446. Mar 9 16:48:52 storage2 account-replicator: Attempted to replicate 0 dbs in 0.00098 seconds (0.00000/s)
  447. Mar 9 16:48:52 storage2 account-replicator: Removed 0 dbs
  448. Mar 9 16:48:52 storage2 account-replicator: 0 successes, 1 failures
  449. Mar 9 16:48:52 storage2 account-replicator: no_change:0 ts_repl:0 diff:0 rsync:0 diff_capped:0 hashmatch:0 empty:0
  450. Mar 9 16:48:57 storage2 object-reconstructor: Starting object reconstruction pass.
  451. Mar 9 16:48:57 storage2 object-reconstructor: Nothing reconstructed for 0.000622034072876 seconds.
  452. Mar 9 16:48:57 storage2 object-reconstructor: Object reconstruction complete. (0.00 minutes)
  453. Mar 9 16:48:57 storage2 object-replicator: Starting object replication pass.
  454. Mar 9 16:48:57 storage2 object-replicator: node2 is not mounted
  455. Mar 9 16:48:57 storage2 object-replicator: Nothing replicated for 0.00109601020813 seconds.
  456. Mar 9 16:48:57 storage2 object-replicator: Object replication complete. (0.00 minutes)
  457. Mar 9 16:48:57 storage2 object-auditor: Begin object audit "forever" mode (ZBF)
  458. Mar 9 16:48:57 storage2 object-auditor: Object audit (ZBF) "forever" mode completed: 0.00s. Total quarantined: 0, Total errors: 0, Total files/sec: 0.00, Total bytes/sec: 0.00, Auditing time: 0.00, Rate: 0.00
  459. Mar 9 16:48:57 storage2 object-auditor: Begin object audit "forever" mode (ALL)
  460. Mar 9 16:48:57 storage2 object-auditor: Object audit (ALL) "forever" mode completed: 0.00s. Total quarantined: 0, Total errors: 0, Total files/sec: 0.00, Total bytes/sec: 0.00, Auditing time: 0.00, Rate: 0.00
  461. Mar 9 16:48:58 storage2 object-updater: Begin object update sweep
  462. Mar 9 16:48:58 storage2 object-updater: Skipping node2 as it is not mounted
  463. Mar 9 16:48:58 storage2 object-updater: Object update sweep completed: 0.00s
Advertisement
Add Comment
Please, Sign In to add comment