cancel
Showing results for 
Search instead for 
Did you mean: 

service port is already is used by other port

Former Member
0 Kudos

Hi,

        While installing one of the R/3 system in linux and maxdb DB .

I am getting following error.

Please help on this.

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member209924
Contributor
0 Kudos

Like everyone mentioned, you need to find out what process is running on this Port and kill if not needed or use another SID

Here is a bunch of Linux commands that will come in handy.

http://www.cyberciti.biz/faq/what-process-has-open-linux-port/

Ravi

former_member189725
Active Contributor
0 Kudos

Is the instance number 77 used by any other instance on the same host?

If yes , use another instance number .

If no , Please change the following in  /etc/services .

# vi /etc/services

search for 3677.

Comment out the line putting a # sign in the start of the line.

Save .

Then retry sapinst.

Regards

Ratnajit

Former Member
0 Kudos

also you could get the port details being used using:

cat /etc/services | grep portnumber

also you could get the details of which applications are using that port by using lsof (downloadable utility for *nix)

Former Member
0 Kudos

Hi,

It says that your port is used by some other application in your system. Check whether any other applications using the same and if need to kill, kill the same and continue the installation.