F. 2020/08/02 08:25:22. FATAL ERROR #1030 GLOBAL RS(GLOBAL RS) - eneric/err/errhand.c(1262)
Open Server error: Error: 16029, State: 0, Severity 20 -- 'Failed to start any network listeners'.
T. 2020/08/02 08:25:22. (-1): Exiting due to a fatal error.
Solution:
- see if the RS (or other service) run on the port that set to RS in the sql.ini/interfaces file:
sybase16@asazrlnsap16:/sybvol01/sap16rs/REP-16_0/install$ netstat -a | grep 11753
tcp 0 0 asazrlnsap16.inte:11753 0.0.0.0:* LISTEN
- find the Process ID of the service:
sybase16@asazrlnsap16:~$ netstat -lntp | grep 11753
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 10.1.1.4:11753 0.0.0.0:* LISTEN 61270/repserver
- kill the service:
sybase16@asazrlnsap16:~$ kill 61270
- check that the services were killed:
sybase16@asazrlnsap16:~$ ps -ef | grep 61270
sybase16 66053 65873 0 08:51 pts/2 00:00:00 grep --color=auto 61270
sybase16@asazrlnsap16:~$ netstat -lntp | grep 11753
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
Start RS
No comments:
Post a Comment