Oracle cloud do not allow ICMP/ping to compute instances. To enable ping, you need to enable ICMP in the security group.
On your compute instance details page, you will see “Virtual Cloud Network”.
Click on Virtual Cloud Network link, that will take you to page with VPC details.
Scroll down, you will see subnet.
Click on Public Subnet, on next page, it shows details about the subnet. Under Security Lists, you will see Default Security List for VirtualCloudNetwork. Click on it to see your firewall rules.
Click Add Ingress Rules button to add new rule. By default port 22 (SSH) allowed from everyone. ICMP was blocked for everyone (rule 2 and 3).
To allow ICMP, you can add a new Rule for ICMP.
On Add Ingress Rules page, select
SOURCE TYPE = CIDR
SOURCE CIDR = 0.0.0.0/0
IP PROTOCOL = ICMP
Click Add Ingress Rules button. Now you should be able to ping to any compute instances on this VPC. It is safe to remove 2 of the existing ICMP rules or edit them instead of adding new rule.
1) Take a snapshot of the disk
2) Create a new server in the same availability zone as the current server. Let’s call it tmpServer.
3) Shutdown tmpServer.
4) Shutdown the server that need disk resized. Lets call it mainServer. Make sure you have Elastic IP, if not shutting down changes IP of the server.
5) Detach the disk.
6) Attack the disk in tmpServer as /dev/xvdf
7) Start tmpServer.
Login to tempServer and do the following.
Resize Partition
Firt find the devices
parted -l
In this cause /dev/xvdf is the disk that need to be resized. Current Size is approx 107 GB.
To see free disk space on this disk, run
parted /dev/xvdf print free
There is 21.5GB free space on the disk.
To grow partition 1 to use up remaining disk space, run command
growpart /dev/xvdf 1
Verify free disk space after. Now you see there is not much free disk space left after partition 1.
Resize FileSystem
Resize file system depends on the type of file system you are using. For ext4, do the folllowing.
Check disk using e2fsck
e2fsck -f /dev/xvdf1
If any errors found, you will be asked to press “y” to fix the errors. After e2fsck run, you can reszie filesystem with command
resize2fs /dev/xvdf1
You have completed resizeing the disk. All you need to do now is
8) Shutdown tmpServer
9) Detact the disk from tmpServer (/dev/xvdf)
10) Attach the disk on original server mainServer as /dev/sda1.