Hi Soumyen,
Deleting through NetManager will only remove the entries from
listener.ora, it is not going to remove it from windows service
manager. To delete a window server you need to use this command:
sc delete <Service Name>
For example:
sc delete Oracle81TNSListener
It seems like port 1521 is occupied by a previous installation of
Oracle. To verify give this command on command prompt:
telnet localhost 1521
If your screen goes blank, that means port 1521 is occupied. You can
exit the blank screen by pressing Ctrl + ] (right common square
bracket), which will bring you to telnet prompt, from where you can
type exit. On the other hand if port 1521 is available then you'll
get a message like this:
C:\>telnet localhost 1521
Connecting To localhost...Could not open connection to the host, on
port 1521: Connect failed
You need to stop all the old listener services, only then you'll be
able to start listener from windows command prompt.
Hope this helps
- Vikram