Skip to content

Commit eb488f6

Browse files
committed
Fix ordered list numbering in the Virtual Server Deployment Guide
Signed-off-by: 林博仁(Buo-ren Lin) <[email protected]>
1 parent f6da142 commit eb488f6

File tree

1 file changed

+51
-51
lines changed

1 file changed

+51
-51
lines changed

faststart/deploy-virtual-server.md

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ First time setup
5050
1. After activating your account, log in at
5151
https://linuxone.cloud.marist.edu/#/login
5252

53-
- Enter your **user ID** and the **password** created during registration.
53+
- Enter your **user ID** and the **password** created during registration.
5454

55-
- Click **Sign in**.
55+
- Click **Sign in**.
5656

5757
![alt text](images-deploy/ssp-login.png)
5858

@@ -61,11 +61,11 @@ First time setup
6161
your private key that matches the public key. You can generate one now or
6262
wait until you deploy your first instance.
6363

64-
- Click **Virtual Servers** in the upper left corner of the page.
64+
- Click **Virtual Servers** in the upper left corner of the page.
6565

66-
- Next click your **username** from the upper right corner of the Home page.
66+
- Next click your **username** from the upper right corner of the Home page.
6767

68-
- Select **Manage SSH Key Pairs**.
68+
- Select **Manage SSH Key Pairs**.
6969

7070
![alt text](images-deploy/manage-key.png)
7171

@@ -84,41 +84,41 @@ First time setup
8484
2. If you want to create a new SSH key pair:
8585

8686

87-
- Click **Create**.
87+
- Click **Create**.
8888

89-
- Enter a **Key Name** for this key.
89+
- Enter a **Key Name** for this key.
9090

91-
- Click **Create a new key pair**.
91+
- Click **Create a new key pair**.
9292

9393

94-
- A pop-up window will appear asking you to save **yourkey. pem** file. This
95-
is your private key. Please save it to a secure location. Once this
96-
operation is complete, there is no way to retrieve this key. Click **OK** to
97-
save the file.
94+
- A pop-up window will appear asking you to save **yourkey. pem** file. This
95+
is your private key. Please save it to a secure location. Once this
96+
operation is complete, there is no way to retrieve this key. Click **OK** to
97+
save the file.
9898

99-
![alt text](images-deploy/create-key.png)
99+
![alt text](images-deploy/create-key.png)
100100

101-
![alt text](images-deploy/pem-file.png)
101+
![alt text](images-deploy/pem-file.png)
102102

103103
Deploy your LinuxONE virtual server
104104
-----------------------------------
105105

106106
1. Go to the **Home** page, **Service Catalog** section and **Virtual Servers**
107107
service.
108108

109-
- Click **Manage Instances**.
109+
- Click **Manage Instances**.
110110

111111
![alt text](images-deploy/manage-instances.png)
112112

113-
- Click **Create**.
113+
- Click **Create**.
114114

115115
![alt text](images-deploy/create-server.png)
116116

117117
1. Your Virtual Server type will automatically be "General purpose VM".
118118

119119
2. Provide details information for this instance.
120120

121-
- An **Instance Name**, without any spaces or special characters.
121+
- An **Instance Name**, without any spaces or special characters.
122122

123123
1. Select the desired Linux image.
124124

@@ -162,12 +162,12 @@ Log in to your LinuxONE virtual server
162162
163163
4. Use SSH to access the Linux guest.
164164
165-
- UserID: linux1
165+
- UserID: linux1
166166
167-
- `-i` lets SSH know which identity file to use access the Linux guest.
167+
- `-i` lets SSH know which identity file to use access the Linux guest.
168168
169-
- Serveripaddress: This was written down from the *Manage Instances* page of
170-
the LinuxONE Community Cloud.
169+
- Serveripaddress: This was written down from the *Manage Instances* page of
170+
the LinuxONE Community Cloud.
171171
172172
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
173173
# ssh –i /path/to/key/keyname.pem linux1@serveripaddress
@@ -203,52 +203,52 @@ Important notes about your server:
203203
5. Firewall is enabled via iptables rules. Only the SSH port is open by default. Modify the firewall rules
204204
with iptables if you need other ports opened. To check your current enabled iptables rules, issue this command:
205205
206-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
207-
# sudo iptables -L
208-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
206+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
207+
# sudo iptables -L
208+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
209209
210210
211-
For SLES:
211+
For SLES:
212212
213-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
214-
# sudo iptables -I INPUT -p tcp --dport <port#> -j ACCEPT
215-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
213+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
214+
# sudo iptables -I INPUT -p tcp --dport <port#> -j ACCEPT
215+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
216216
217-
If you want to make your changes permanently, issue this command:
217+
If you want to make your changes permanently, issue this command:
218218
219-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
220-
# sudo bash -c "iptables-save > /etc/linuxone/iptables.save"
221-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
219+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
220+
# sudo bash -c "iptables-save > /etc/linuxone/iptables.save"
221+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
222222
223-
Note: If you want to use firewall management tool like firewalld, you need to delete the saved iptables file.
223+
Note: If you want to use firewall management tool like firewalld, you need to delete the saved iptables file.
224224
225225
226-
For RHEL:
226+
For RHEL:
227227
228-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
229-
# sudo iptables -I INPUT -p tcp --dport <port#> -j ACCEPT
230-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
228+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
229+
# sudo iptables -I INPUT -p tcp --dport <port#> -j ACCEPT
230+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
231231
232-
If you want to make your changes permanently, issue this command:
233-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
234-
# sudo bash -c "iptables-save > /etc/sysconfig/iptables.save"
235-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
232+
If you want to make your changes permanently, issue this command:
233+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
234+
# sudo bash -c "iptables-save > /etc/sysconfig/iptables.save"
235+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
236236
237-
Note: If you want to use firewall management tool like firewalld, you need to delete the saved iptables file.
237+
Note: If you want to use firewall management tool like firewalld, you need to delete the saved iptables file.
238238
239239
240-
For Ubuntu:
240+
For Ubuntu:
241241
242-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
243-
# sudo iptables -I INPUT -p tcp --dport <port#> -j ACCEPT
244-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
242+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
243+
# sudo iptables -I INPUT -p tcp --dport <port#> -j ACCEPT
244+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
245245
246-
If you want to make your changes permanently, issue this command:
246+
If you want to make your changes permanently, issue this command:
247247
248-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
249-
# sudo bash -c "iptables-save > /etc/iptables/rules.v4"
250-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
248+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
249+
# sudo bash -c "iptables-save > /etc/iptables/rules.v4"
250+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
251251
252-
Note: If you want to use firewall management tool like ufw, you need to delete the saved iptables file.
252+
Note: If you want to use firewall management tool like ufw, you need to delete the saved iptables file.
253253
254254

0 commit comments

Comments
 (0)