diff --git a/account-server.conf b/account-server.conf index 9fea6e1..9fb0cc0 100644 --- a/account-server.conf +++ b/account-server.conf @@ -1,6 +1,11 @@ [DEFAULT] + +# Make sure your swift-ring-builder arguments match the bind_ip and bind_port. +# You almost certainly do not want to listen just on loopback unless testing. +# However, you want to keep port 6202 if SElinux is enabled. bind_ip = 127.0.0.1 -bind_port = 6002 +bind_port = 6202 + workers = 2 [pipeline:main] diff --git a/container-server.conf b/container-server.conf index ac96702..6ec4630 100644 --- a/container-server.conf +++ b/container-server.conf @@ -1,6 +1,11 @@ [DEFAULT] + +# Make sure your swift-ring-builder arguments match the bind_ip and bind_port. +# You almost certainly do not want to listen just on loopback unless testing. +# However, you want to keep port 6201 if SElinux is enabled. bind_ip = 127.0.0.1 -bind_port = 6001 +bind_port = 6201 + workers = 2 [pipeline:main] diff --git a/object-server.conf b/object-server.conf index 5015d61..2c7cd83 100644 --- a/object-server.conf +++ b/object-server.conf @@ -1,6 +1,11 @@ [DEFAULT] + +# Make sure your swift-ring-builder arguments match the bind_ip and bind_port. +# You almost certainly do not want to listen just on loopback unless testing. +# However, you want to keep port 6200 if SElinux is enabled. bind_ip = 127.0.0.1 -bind_port = 6000 +bind_port = 6200 + workers = 3 [pipeline:main] diff --git a/openstack-swift.spec b/openstack-swift.spec index f1f3a50..6206e88 100644 --- a/openstack-swift.spec +++ b/openstack-swift.spec @@ -7,7 +7,7 @@ Name: openstack-swift Version: 1.13.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: OpenStack Object Storage (Swift) Group: Development/Languages @@ -467,6 +467,9 @@ exit 0 %doc LICENSE doc/build/html %changelog +* Tue Jun 24 2014 Pete Zaitcev - 1.13.1-4 +- Move default ports from 600x to 620x (#1107907 and a dozen of others) + * Mon Jun 23 2014 Pete Zaitcev - 1.13.1-3 - Drop python-swiftclient to implement bz#1058131 in Rawhide