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
+37-42Lines changed: 37 additions & 42 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:
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.
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,10 +69,24 @@ 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
-
### Set up storage account
72
+
### Create storage account and container
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
+
76
90
1.[Create an Ubuntu 20.04 VM in Azure](/cli/azure/install-azure-cli-linux?pivots=apt).
77
91
78
92
1. Sign in to the VM.
@@ -83,35 +97,15 @@ 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 version 2.30.0 or higher.
100
+
1. [Update the Azure CLI](/cli/azure/update-azure-cli) to latest version.
87
101
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
97
102
98
103
1. Sign in to Azure:
99
104
100
105
```azurecli
101
106
az login
102
107
```
103
108
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**.
115
109
116
110
1. Download the following shell script for the deployer VM packages.
117
111
@@ -145,52 +139,53 @@ Before you can download the software, set up an Azure Storage account for the do
145
139
146
140
1. In the Azure CLI, when asked for the access key, enter your storage account's key. To find the storage account's key:
147
141
148
-
1. Find the storage account in the Azure portal.
142
+
1. Find the storage account in the Azure portal you created.
149
143
150
144
1. On the storage account's sidebar menu, select **Access keys** under **Security + networking**.
151
145
152
146
1. For **key1**, select **Show key and connection string**.
153
147
154
148
1. Copy the **Key** value.
155
149
156
-
1. In the Azure portal, find the container named `sapbits`in the storage account that you created.
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
+
157
160
158
-
1. Make sure the deployer VM packages are now visible in`sapbits`.
161
+
1. Make sure the deployer VM packages folder is now visible in `sapbits` container.
159
162
160
163
1. Find the storage account that you created in the Azure portal.
161
164
162
165
1. Find the container named `sapbits`.
163
166
164
167
1. On the **Overview** page for `sapbits`, look for a folder named **deployervmpackages**.
165
168
169
+
1. Move to next step to download SAP media
170
+
166
171
### Download SAP media
167
172
168
173
After setting up your Azure Storage account, you can download the SAP installation media required to install the SAP software.
169
174
170
175
1. Sign in to the Ubuntu VM that you created in the [previous section](#set-up-storage-account).
171
176
177
+
1. Install ansible on the ubuntu VM
178
+
179
+
```bash
180
+
sudo pip3 install ansible==2.9.27
181
+
```
182
+
172
183
1. Clone the SAP automation repository from GitHub.
0 commit comments