You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/center-sap-solutions/install-software.md
+44-39Lines changed: 44 additions & 39 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ ACSS supports the following operating system (OS) software versions:
44
44
45
45
## Required components
46
46
47
-
The following components are necessary for the SAP installation . If you are following the "Upload components with script" step, these will be installed automatically. However you can also follow "Upload components manually" steps listed below to do this yourself.
47
+
The following components are necessary for the SAP installation:
48
48
49
49
- SAP software installation media (part of the `sapbits` container described later in this article)
50
50
- All essential SAP packages (*SWPM*, *SAPCAR*, etc.)
@@ -69,24 +69,10 @@ You can use the following method to upload the SAP components to your Azure acco
69
69
70
70
You also can [upload the components manually](#upload-components-manually) instead.
71
71
72
-
### Create storage account and container
72
+
### Set up storage account
73
73
74
74
Before you can download the software, set up an Azure Storage account for the downloads.
75
75
76
-
1.[Create an Azure Storage account through the Azure portal](../storage/common/storage-account-create.md). Make sure to create the storage account in the same subscription as your SAP system infrastructure. This is the storage account where SAP bits/media will reside.
77
-
78
-
1. Create a container within the Azure Storage account named `sapbits`.
79
-
80
-
1. On the storage account's sidebar menu, select **Containers** under **Data storage**.
81
-
82
-
1. Select **+ Container**.
83
-
84
-
1. On the **New container** pane, for **Name**, enter `sapbits`.
85
-
86
-
1. Select **Create**.
87
-
88
-
### Set up storage account
89
-
90
76
1.[Create an Ubuntu 20.04 VM in Azure](/cli/azure/install-azure-cli-linux?pivots=apt).
91
77
92
78
1. Sign in to the VM.
@@ -97,15 +83,35 @@ Before you can download the software, set up an Azure Storage account for the do
1. [Update the Azure CLI](/cli/azure/update-azure-cli) to latest version.
86
+
1. [Update the Azure CLI](/cli/azure/update-azure-cli) to version 2.30.0 or higher.
101
87
88
+
1. Install the following packages:
89
+
90
+
- `pip3` version `pip-21.3.1.tar.gz`
91
+
- `wheel` version 0.37.1
92
+
- `jq` version 1.6
93
+
- `ansible` version 2.9.27
94
+
- `netaddr` version 0.8.0
95
+
- `zip`
96
+
- `netaddr` version 0.8.0
102
97
103
98
1. Sign in to Azure:
104
99
105
100
```azurecli
106
101
az login
107
102
```
108
103
104
+
1. [Create an Azure Storage account through the Azure portal](../storage/common/storage-account-create.md). Make sure to create the storage account in the same subscription as your SAP system infrastructure.
105
+
106
+
1. Create a container within the Azure Storage account named `sapbits`.
107
+
108
+
1. On the storage account's sidebar menu, select **Containers** under **Data storage**.
109
+
110
+
1. Select **+ Container**.
111
+
112
+
1. On the **New container** pane, for **Name**, enter `sapbits`.
113
+
114
+
1. Select **Create**.
109
115
110
116
1. Download the following shell script for the deployer VM packages.
111
117
@@ -139,63 +145,62 @@ Before you can download the software, set up an Azure Storage account for the do
139
145
140
146
1. In the Azure CLI, when asked for the access key, enter your storage account's key. To find the storage account's key:
141
147
142
-
1. Find the storage account in the Azure portal you created.
148
+
1. Find the storage account in the Azure portal.
143
149
144
150
1. On the storage account's sidebar menu, select**Access keys** under **Security + networking**.
145
151
146
152
1. For **key1**, select**Show key and connection string**.
147
153
148
154
1. Copy the **Key** value.
149
155
150
-
1. The following packages will be installed automatically under a new folder **deployervmpackages** in the storage account:
151
-
152
-
- `pip3` version `pip-21.3.1.tar.gz`
153
-
- `wheel` version 0.37.1
154
-
- `jq` version 1.6
155
-
- `ansible` version 2.9.27
156
-
- `netaddr` version 0.8.0
157
-
- `zip`
158
-
- `netaddr` version 0.8.0
159
-
156
+
1. In the Azure portal, find the container named `sapbits`in the storage account that you created.
160
157
161
-
1. Make sure the deployer VM packages folder is now visible in `sapbits` container.
158
+
1. Make sure the deployer VM packages are now visible in`sapbits`.
162
159
163
160
1. Find the storage account that you created in the Azure portal.
164
161
165
162
1. Find the container named `sapbits`.
166
163
167
164
1. On the **Overview** page for`sapbits`, look for a folder named **deployervmpackages**.
168
165
169
-
1. Move to next step to download SAP media
170
-
171
166
### Download SAP media
172
167
173
168
After setting up your Azure Storage account, you can download the SAP installation media required to install the SAP software.
174
169
175
170
1. Sign in to the Ubuntu VM that you created in the [previous section](#set-up-storage-account).
176
171
177
-
1. Install ansible on the ubuntu VM
178
-
179
-
```bash
180
-
sudo pip3 install ansible==2.9.27
181
-
```
182
-
183
172
1. Clone the SAP automation repository from GitHub.
0 commit comments