Seems like there is already a geth instance running on your system. To solve this error, you have to terminate that process.
Use this command to find the pid of geth:
ps -eaux | grep "geth"
Once you get the process id and kill that process using
kill -9 <pid>