sed/awk is helpful for this?

Dear Team,
Thanks in advance.

The actual content is like below in a file.

and i want the output lik this.

using sed/awk is this possible??

Try:

awk -F', ' '$1="server"' file

or

sed 's/[^,]*,/server/' file