diff --git a/docs-chef-io/content/server/ctl_chef_server.md b/docs-chef-io/content/server/ctl_chef_server.md index 3269fcd01c..cbf3b67431 100644 --- a/docs-chef-io/content/server/ctl_chef_server.md +++ b/docs-chef-io/content/server/ctl_chef_server.md @@ -107,50 +107,6 @@ This subcommand has the following syntax: chef-server-ctl notice ``` -## install - -The `install` subcommand is used to install premium features of the Chef -Infra Server: Chef management console and Chef Infra Client run -reporting, high availability configurations, and Chef -Infra Server replication. - -{{< warning >}} - -The `chef-server-ctl install` command no longer works in the 12.5 (and -earlier) versions of the Chef Infra Server due to a change in how -packages are downloaded from Chef. - -{{< /warning >}} - -**Syntax** - -This subcommand has the following syntax: - -```bash -chef-server-ctl install name_of_addon (options) -``` - -where `name_of_addon` represents the command line value associated with -the add-on or premium feature. - -**Options** - -This subcommand has the following options: - -`--path PATH` - -: Use to specify the location of a package. This option is not - required when packages are downloaded from - . - -### Use Downloads - -{{< readfile file="content/server/reusable/md/ctl_chef_server_install_features_download.md" >}} - -### Use Local Packages - -{{< readfile file="content/server/reusable/md/ctl_chef_server_install_features_manual.md" >}} - ## Key Rotation Use the following commands to manage public and private key rotation for diff --git a/docs-chef-io/content/server/install_server_tiered.md b/docs-chef-io/content/server/install_server_tiered.md index aec8db55e4..f6c6ace5d1 100644 --- a/docs-chef-io/content/server/install_server_tiered.md +++ b/docs-chef-io/content/server/install_server_tiered.md @@ -265,62 +265,6 @@ organization: 1. {{< readfile file="content/server/reusable/md/ctl_chef_server_user_create_admin.md" >}} 2. {{< readfile file="content/server/reusable/md/ctl_chef_server_org_create_summary.md" >}} -## Enable Features - -Enable additional features of the Chef Infra Server! The packages may be -downloaded directly as part of the installation process or they may be -first downloaded to a local directory, and then installed. - -**Use Downloads** - -The `install` subcommand downloads packages from - by default. For systems that are not behind -a firewall (and have connectivity to ), the -Chef management console package can be installed as described below: - -Chef Manage - -: Use Chef management console to manage data bags, attributes, - run-lists, roles, environments, and cookbooks from a web user - interface. - - On each front end server in the Chef Infra Server configuration, - run: - - ```bash - chef-server-ctl install chef-manage - ``` - - then: - - ```bash - chef-server-ctl reconfigure - ``` - - and then: - - ```bash - chef-manage-ctl reconfigure - ``` - - To accept the [Chef MLSA]({{< relref "chef_license" >}}): - - ```bash - sudo chef-manage-ctl reconfigure --accept-license - ``` - - This updates the Chef Infra Server and creates the - `/etc/opscode-manage/secrets.rb` file. When running the Chef - management console 1.11 (or higher), copy the `secrets.rb` file in - the `/etc/opscode-manage` directory on one of the frontend servers - to the same directory on each of the other frontend servers, and - then rerun `chef-manage-ctl reconfigure` so the copied - `/etc/opscode-manage/secrets.rb` file gets used correctly. - -**Use Local Packages** - -{{< readfile file="content/server/reusable/md/ctl_chef_server_install_features_manual.md" >}} - ## Reference The following sections show an example chef-server.rb file and a list of diff --git a/docs-chef-io/content/server/reusable/md/ctl_chef_server_install_features_download.md b/docs-chef-io/content/server/reusable/md/ctl_chef_server_install_features_download.md deleted file mode 100644 index 6bdc669661..0000000000 --- a/docs-chef-io/content/server/reusable/md/ctl_chef_server_install_features_download.md +++ /dev/null @@ -1,30 +0,0 @@ -The `install` subcommand downloads packages from by default. -For systems that are not behind a firewall (and have connectivity to ), these packages can be installed as described below. - -1. Install add-ons - - Install Chef Manage with: - - ```bash - sudo chef-server-ctl install chef-manage - ``` - -1. Reconfigure the server - - ```bash - sudo chef-server-ctl reconfigure - ``` - -1. Reconfigure add-ons - - Reconfigure Chef Manage with: - - ```bash - sudo chef-manage-ctl reconfigure - ``` - -Finally, accept the [Chef License](https://docs.chef.io/chef_license/): - -```bash -sudo chef-manage-ctl reconfigure --accept-license -``` diff --git a/docs-chef-io/content/server/reusable/md/ctl_chef_server_install_features_manual.md b/docs-chef-io/content/server/reusable/md/ctl_chef_server_install_features_manual.md deleted file mode 100644 index def60ebe25..0000000000 --- a/docs-chef-io/content/server/reusable/md/ctl_chef_server_install_features_manual.md +++ /dev/null @@ -1,14 +0,0 @@ -Use the `install` subcommand with the `--path` option to install the Chef Manage (`chef-manage`) add-on for Chef Infra Server. - -```bash -sudo chef-server-ctl install PACKAGE_NAME --path /path/to/package/directory -``` - -For example: - -```bash -sudo chef-server-ctl install chef-manage --path /root/packages -``` - -The `chef-server-ctl` command will install the first `chef-manage` -package found in the `/root/packages` directory.