Raised This Month: $32 Target: $400
 8% 

/hlds_run: line 321: 7373 Segmentation fault $HL_CMD


Post New Thread Reply   
 
Thread Tools Display Modes
Junka
Member
Join Date: Dec 2007
Old 05-16-2009 , 05:39   Re: /hlds_run: line 321: 7373 Segmentation fault $HL_CMD
Reply With Quote #11

Hmm, did you try to delete all executables in hlds_l folder (or however you named it) and ran hldsupdatetool?
Junka is offline
chp'
Senior Member
Join Date: Nov 2008
Old 05-16-2009 , 13:26   Re: /hlds_run: line 321: 7373 Segmentation fault $HL_CMD
Reply With Quote #12

Ja erased everything and did a new installation using hldsupdatetool and still the problem persists, I noticed that this problem only happens with people running on LINUX.
chp' is offline
TwinRraZzorR
Member
Join Date: Apr 2009
Old 05-16-2009 , 16:16   Re: /hlds_run: line 321: 7373 Segmentation fault $HL_CMD
Reply With Quote #13

some tips are on this page
http://www.unknownworlds.com/forums/...hp/t60422.html
hope it's helpful !
TwinRraZzorR is offline
P4rD0nM3
Veteran Member
Join Date: Feb 2006
Old 05-19-2009 , 15:41   Re: /hlds_run: line 321: 7373 Segmentation fault $HL_CMD
Reply With Quote #14

I'm also having that problem with the latest update. I guess...-autoupdate has it problems sometimes.
P4rD0nM3 is offline
zilakz
Junior Member
Join Date: Dec 2008
Location: Sweden
Old 05-27-2009 , 12:13   Re: /hlds_run: line 321: 7373 Segmentation fault $HL_CMD
Reply With Quote #15

Hello

I have been having these problems as well on my with with diffrent segmentation error.

I noticed that my auto amxmodx installer from my server provider missed to give out information about plugins.ini located in the metamod folder.
Make sure you have done this step!

http://wiki.amxmodx.org/Installing_A...ally#Configure

And set the comamnds:
for windows:
win32 addons/amxmodx/dlls/amxmodx_mm.dll
or for linux:
linux addons/amxmodx/dlls/amxmodx_mm_i386.so

If you dont know if your server provider host a linux or windows server ASK THEM! its very important you get it right!

mine had the sign ";" in front of the line, after removing the sign ";" in front of the line, the segment error dissapeard.
I'm gonng test run my server now and update this thread if my server still goes down and do weird things.

Question:
Can AmxModx run without metamod?
maybe on another mod that maybe is more adapet for linux servers, since i heard the segment problems are mostly happening on linux servers.

just asking.

EDIT!!!!
These segment errors is caused my haveing amxmodx installed i figured out.
I'm nost sure if its bound to AMXmodX or just simply the metamod plugin itself.
If this dont help do this:

1. Remove everything and ask for a fresh install without metamod and amx enabled and see if you get the error (possebly not)
2. Install Metamod "ONLY". (See if the error comes up.)
3. install maxmodX with metamod allready installed.

If the problem comes up at point 1, the its your server provider fault.
If the problem comes up at point 2, its metamod who causes it.
and if it's point 3, its AMX.

IMPORTANT!
Before going to step 2 run the server atleast 24H, same when your on step 3 befor going to step 4.

The segment errors seams to come at random time's.
So make sure 100% you are sure its not caused by point 1 or 2 before moving on to point 3!

(post your results)

Last edited by zilakz; 05-27-2009 at 12:23.
zilakz is offline
P4rD0nM3
Veteran Member
Join Date: Feb 2006
Old 05-30-2009 , 19:05   Re: /hlds_run: line 321: 7373 Segmentation fault $HL_CMD
Reply With Quote #16

Hey if you look at the error it says on line 312.

This is what's on 321...

Code:
run() {
	# Runs the steam update and server
	# Loops if RESTART is set
	# Debugs if server failure is detected
	# Note: if RESTART is not set then
	# 1. DEBUG is set then the server is NOT exec'd
	# 2. DEBUG is not set the the server is exec'd

	if test -n "$RESTART" ; then
		echo "Auto-restarting the server on crash"

		#loop forever
		while true
		do
			# Update if needed
			update

			# Run the server
			$HL_CMD
			retval=$?
			if test $retval -eq 0 && test -z "$AUTO_UPDATE"; then
				break; # if 0 is returned then just quit
			fi

			debugcore $retval

			echo "`date`: Server restart in $TIMEOUT seconds"

			# don't thrash the hard disk if the server dies, wait a little
			sleep $TIMEOUT
		done # while true 
	else
		# Update if needed
		update

		# Run the server
		if test "$DEBUG" -eq 0; then
			# debug not requested we can exec
			exec $HL_CMD
		else
			# debug requested we can't exec
			$HL_CMD
			debugcore $?
		fi
	fi
}
If you delete steam in yoru dir it'll solve it. But then you have to manually update your servers from now on.

This only happens on my KZ, Surf, Scoutzknivez servers...
P4rD0nM3 is offline
zilakz
Junior Member
Join Date: Dec 2008
Location: Sweden
Old 05-31-2009 , 14:34   Re: /hlds_run: line 321: 7373 Segmentation fault $HL_CMD
Reply With Quote #17

intressting.
Found thise amusing tho:
"Don't thrash the hard disk if the server dies, wait a little
sleep $TIMEOUT"
zilakz is offline
chp'
Senior Member
Join Date: Nov 2008
Old 06-18-2009 , 19:19   Re: /hlds_run: line 321: 7373 Segmentation fault $HL_CMD
Reply With Quote #18

Someone who has Linux servers running CS could tell me which distribution and version of linux are using?

Quote:
Linux version 2.6.18-6-amd64 (Debian 2.6.18.dfsg.1-24etch2) ([email protected]) (gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)) #1 SMP Tue May 5 08:01:28 UTC 2009
I made several attempts, reinstall everything and still the error still happening, even without metamod and amxmodX the error still happens.

A temporary solution was put "-debug" at the boot server, but this is not a pleasant solution.

What is CS server on linux without problem like this?

Quote:
/hlds_run: line 321: 7373 Segmentation fault $HL_CMD
This problem only happens when the server fails or and restarted.
chp' is offline
fang
Senior Member
Join Date: Nov 2007
Location: New Jersey
Old 06-19-2009 , 13:21   Re: /hlds_run: line 321: 7373 Segmentation fault $HL_CMD
Reply With Quote #19

Had this issue as well. Delete all the maps in your maps folder and re-use hldsupdatetool. If that doesn't fix you might have to just reinstall the server
fang is offline
Mlk27
Veteran Member
Join Date: May 2008
Old 06-19-2009 , 19:33   Re: /hlds_run: line 321: 7373 Segmentation fault $HL_CMD
Reply With Quote #20

Looks like to me that this only happen to Linux hlds..
Mlk27 is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 08:30.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode