Think about what you are asking for. Given the following 2 column table, what would your output look like:
server_name other_data
bill data1
bill data2
jack data3
jack data4
A select distinct on the server name would yield 2 rows:
bill
jack
If you try to include the other_data column, you can no longer make it distinct because of the multiple values in the other_data column.