By the way, DSolve
works on this problem and yields an exact solution.
It oscillates too rapidly for Plot[]
to render a smooth curve, unless you zoom in a great deal.
sol = First@
DSolve[{y1'[x] + 4 y1[x]/x ==
0, (4 y2'[x])/x + (10^-36 x^6 y2[x] + 1/2 y1'[x]*y2'[x])/y1[x] +
y2''[x] == 0, y1[1] == 10^33, y2'[1] == 0, y2[1] == 10^8},
{y1, y2}, {x, 10^0, 10^15}];
Plot[y2[10^12 + x/10^24] /. sol, {x, 0, 1}, WorkingPrecision -> 32]