This repository was archived by the owner on Mar 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathscript-sap-bast.sh
43 lines (36 loc) · 1.62 KB
/
script-sap-bast.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
## Copyright © 2019, Oracle and/or its affiliates.
## All rights reserved. The Universal Permissive License (UPL), Version 1.0 https://oss.oracle.com/licenses/upl/#_How_should_I
#!/bin/bash
# Installing GUI - X Packages
sudo yum groupinstall 'Server with GUI' -y
sudo systemctl set-default graphical.target
# Installing/Configuring VNC service
sudo yum install tigervnc-server -y
sudo firewall-cmd --zone=public --permanent --add-port=5900-5902/tcp
sudo firewall-cmd --reload
sudo bash -c 'cp /lib/systemd/system/[email protected] /etc/systemd/system/vncserver@:1.service'
sudo systemctl daemon-reload
sudo bash -c 'sed -i -e "s/<USER>/opc/g" /etc/systemd/system/vncserver@:1.service'
sudo systemctl start vncserver@:1.service
sudo systemctl enable vncserver@:1.service
# Enabling growpart (autoresize)
sudo bash -c 'sed -i -e "s/#- growpart/ - growpart/g" /etc/cloud/cloud.cfg'
# Configuring/enabling ntp service
sudo yum -y install ntp
sudo firewall-cmd --zone=public --permanent --add-port=123/udp
sudo firewall-cmd --reload
sudo ntpdate 169.254.169.254
sudo bash -c 'sed -i -e "s/server/#server/g" /etc/ntp.conf'
sudo bash -c 'echo server 169.254.169.254 iburst >> /etc/ntp.conf'
sudo systemctl start ntpd
sudo systemctl enable ntpd
sudo systemctl stop chronyd
sudo systemctl disable chronyd
# Setting up VNC password. VNC Password is the Bastion Instance "Display Name"!
sudo bash -c 'curl -L http://169.254.169.254/opc/v1/instance/displayName | vncpasswd -f >> /home/opc/.vnc/passwd'
sudo bash -c 'chown -R opc.opc /home/opc/.vnc/'
sudo bash -c 'chmod 600 /home/opc/.vnc/passwd'
# Enabling GUI
sudo bash -c 'init 3'
sleep 20
sudo bash -c 'init 5'