fnichol / knife-server

A Chef Knife plugin to manage Chef Servers. Bootstrap a new Chef Server on Amazon's EC2, Digital Ocean, Linode, OpenStack or a standalone server. Backup and restore your Chef Server or Hosted Chef's node, role, data bag, and environment JSON data.
http://fnichol.github.com/knife-server
Apache License 2.0
158 stars 34 forks source link

Package for chef server 11 not available #36

Closed dagi3d closed 11 years ago

dagi3d commented 11 years ago

If I try to bootstrap my local machine with the following command knife server bootstrap standalone --node-name chef.traity.dev --host 192.168.33.11 --ssh-user vagrant --ssh-password vagrant I get the following output:

Bootstrapping Chef on 192.168.33.11
192.168.33.11 hostname stop/waiting
192.168.33.11
192.168.33.11 -----> Downloading Chef Server package from http://www.opscode.com/chef/download-server?p=ubuntu&pv=12.04&m=i686&prerelease=false to /tmp/tmp.7VpIovrT/chef__amd64.deb
192.168.33.11

and that's it. The procedure just stops there It seems that the url http://www.opscode.com/chef/download-server?p=ubuntu&pv=12.04&m=i686&prerelease=false is broken

In my case the package for the 11 version according to the opscode download page, would be at https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/12.04/x86_64/chef-server_11.0.6-1.ubuntu.12.04_amd64.deb

erikh commented 11 years ago

Opscode provides no 32-bit omnibus packages for chef 11.

For what it's worth, actually telling you it didn't work is either already merged, or in an outstanding pull request I filed from two weeks ago or so (and is expected to be merged), can't remember now.

On Thu, Apr 4, 2013 at 3:43 AM, dagi3d notifications@github.com wrote:

If I try to bootstrap my local machine with the following command knife server bootstrap standalone --node-name chef.traity.dev --host 192.168.33.11 --ssh-user vagrant --ssh-password vagrant I get the following output:

Bootstrapping Chef on 192.168.33.11 192.168.33.11 hostname stop/waiting 192.168.33.11 192.168.33.11 -----> Downloading Chef Server package from http://www.opscode.com/chef/download-server?p=ubuntu&pv=12.04&m=i686&prerelease=false to /tmp/tmp.7VpIovrT/chef__i386.deb 192.168.33.11

and that's it. The procedure just stops there It seems that the url http://www.opscode.com/chef/download-server?p=ubuntu&pv=12.04&m=i686&prerelease=falseis broken

In my case the package for the 11 version according to the opscode download page, would be at https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/12.04/x86_64/chef-server_11.0.6-1.ubuntu.12.04_amd64.deb

— Reply to this email directly or view it on GitHubhttps://github.com/fnichol/knife-server/issues/36 .

erikh commented 11 years ago

Also, just to be really clear, the link you provide is to a 64-bit package, and the link being fetched by knife-server is requesting a 32-bit one -- likely because your VM is 32-bit. If it's a 64-bit VM, that's a bug.

On Thu, Apr 4, 2013 at 6:29 AM, Erik Hollensbe erik@hollensbe.org wrote:

Opscode provides no 32-bit omnibus packages for chef 11.

For what it's worth, actually telling you it didn't work is either already merged, or in an outstanding pull request I filed from two weeks ago or so (and is expected to be merged), can't remember now.

On Thu, Apr 4, 2013 at 3:43 AM, dagi3d notifications@github.com wrote:

If I try to bootstrap my local machine with the following command knife server bootstrap standalone --node-name chef.traity.dev --host 192.168.33.11 --ssh-user vagrant --ssh-password vagrant I get the following output:

Bootstrapping Chef on 192.168.33.11 192.168.33.11 hostname stop/waiting 192.168.33.11 192.168.33.11 -----> Downloading Chef Server package from http://www.opscode.com/chef/download-server?p=ubuntu&pv=12.04&m=i686&prerelease=false to /tmp/tmp.7VpIovrT/chef__i386.deb 192.168.33.11

and that's it. The procedure just stops there It seems that the url http://www.opscode.com/chef/download-server?p=ubuntu&pv=12.04&m=i686&prerelease=falseis broken

In my case the package for the 11 version according to the opscode download page, would be at https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/12.04/x86_64/chef-server_11.0.6-1.ubuntu.12.04_amd64.deb

— Reply to this email directly or view it on GitHubhttps://github.com/fnichol/knife-server/issues/36 .

dagi3d commented 11 years ago

It was a ubuntu64 vagrant box, but it seems it detected the i686 cpu. just used another box with amd64 and the package was downloaded correctly