Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×

magaman

Member
  • Content Count

    54
  • Joined

  • Last visited

  • Medals

Everything posted by magaman

  1. I get the same error but our missions work. Your issue seems to be line 360: CreateBoundSocket: ::bind couldn't find an open port between 2303 and 2303
  2. my launcher shows recruit but the game browser shows custom. I joined my server and it is using the custom.
  3. magaman

    Getting stuck on the MP loading screen

    same here. What I've found out is the server I host I can't join, stuck at map screen with load bar at 80%. Everyone else can join it. We have a hosted server that I can join. Another issue is after the missions download it hangs and have to disco then reconnect and can finally join missions. This never happened til the update. By the way both servers are the same mods.
  4. I just made it executable and it works: chmod +x
  5. mine updated to 1.10 using steamcmd ./steamcmd.sh +login (name) (pw) +force_install_dir (dir) +app_update 233780 validate
  6. ./arma3server -port=2322 -cpuCount=4 -config=config.cfg -mods=@cba_a3\;@acre\;@jayarma3lib Cba should load 1st and for linux you need to use \; to seperate mods. This is my startup: ./arma3server -config=a3.cfg -config=server.cfg -netlog -port=2302 -mods=@CBA_A3\;@ACRE_A3\;@JayArma2Lib_A3\;@Nimitz\;@ALiVE\;@LEA_A3\;@NATO_Russian_SF_Weapons\;@POMI_PMC\;@RH_M4_A3\;@sthud_a3\;@tmr\;@FA18_A3\;@VTS_Music
  7. using the arma2 start file someone posted here can load the mods. But for some reason it loads all but the ACRE mod. Anyone know why? #!/bin/bash # # armaserver: ArmA 2 Linux Dedicated Server Control Script # © 2010 BIStudio # ArmA 2 binary version must be 1.04 or later # ## ## slightly addapted by DaOarge for Arma3 ## #======================================================================= #======== CONFIGURATION PARAMETERS ======== #======== MUST BE EDITED MANUALLY TO FIT YOUR SYSTEM PARAMETERS ======== #======================================================================= ARMA_DIR=/home/yourserverfolder CONFIG=server.cfg CFG=a3.cfg PORT=2302 PIDFILE=${ARMA_DIR}/${PORT}.pid RUNFILE=${ARMA_DIR}/${PORT}.run LOGFILE=${ARMA_DIR}/log.a3pub.${PORT}.txt SERVER=${ARMA_DIR}/arma3server #OTHERPARAMS="-cpucount=2" OTHERPARAMS="-cpucount=2 -exthreads=7" MODS=@CBA_A3\;@ACRE_A3\,@JayArma2Lib_A3\;@Nimitz\;@ALiVE\;@LEA_A3\;@NATO_Russian_SF_Weapons\;@POMI_PMC\;@RH_M$_A3\;@sthud_a3\;@tmr\;@FA18_A3\;@VTS_Music #======================================================================= ulimit -c 1000000 case "$1" in start) if [ -f ${RUNFILE} ]; then $0 stop fi echo "Starting A3 PUBLIC server..." # file to mark we want server running... echo "go" >${RUNFILE} # launch the background watchdog process to run the server nohup </dev/null >/dev/null $0 watchdog & ;; stop) echo "Stopping A3 PUBLIC server..." if [ -f ${RUNFILE} ]; then # ask watcher process to exit by deleting its runfile... rm -f ${RUNFILE} fi # and terminate ArmA 2 server process if [ -f ${PIDFILE} ]; then kill -TERM $(< ${PIDFILE}) if [ -f ${PIDFILE} ]; then rm -f ${PIDFILE} fi fi ;; status) if [ -f ${RUNFILE} ]; then echo "A3 PUBLIC server should be running..." else echo "A3 PUBLIC server not running check logfile..." fi if [ -f ${PIDFILE} ]; then PID=$(< ${PIDFILE}) echo "PID file exists (PID=${PID})..." if [ -f /proc/${PID}/cmdline ]; then echo "Server process seems to be running..." fi fi ;; check) echo -n "ArmA 2 directory: ${ARMA_DIR} " if [ -d ${ARMA_DIR} ]; then echo "OK" else echo "MISSING!" fi echo -n "Server executable: ${SERVER} " if [ -x ${SERVER} ]; then echo "OK" else echo "ERROR!" fi echo "Port number: ${PORT}" echo -n "Config file: ${CONFIG} " if [ -f ${CONFIG} ]; then echo "OK" else echo "MISSING!" fi echo "PID file: ${PIDFILE}" echo "RUN file: ${RUNFILE}" ;; restart) $0 stop $0 start ;; watchdog) # this is a background watchdog process. Do not start directly while [ -f ${RUNFILE} ]; do # launch the server... cd ${ARMA_DIR} echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Starting server (port ${PORT})..." ${SERVER} >>${LOGFILE} 2>&1 -config=${CONFIG} -cfg=${CFG} -port=${PORT} -pid=${PIDFILE} -mod=${MODS} ${OTHERPARAMS} if [ -f ${RUNFILE} ]; then echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Server died, waiting to restart..." sleep 5s else echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Server shutdown intentional, watchdog terminating" fi done ;; *) echo "$0 (start|stop|restart|status|check)" ;; esac ---------- Post added at 16:49 ---------- Previous post was at 16:29 ---------- nm found the missing ;
  8. ubuntu doesn't rar by default. did you install unrar ?
  9. tar jxvf <filename>.tar.bz2
  10. crash my server. Went back to previous version and works fine. My log looks like ^^^^^^^^^^^^^ ubuntu 12.04 with 8gig ram
  11. Running good. Only problem I have is server shows red. Any idea why?
  12. open arma2oaserver and add this: CFG=arma2oa.cfg
  13. magaman

    Arma2 OA Ubuntu Server

    ARMA_DIR=/ CONFIG=server.cfg CFG= OTHERPARAMS='-cfg=arma2oa.cfg -cpucount=4' should be: ARMA_DIR=/home/aladin ? CONFIG=server.cfg CFG=arma2oa.cfg OTHERPARAMS='-cpucount=4' Also if running mods cba has to be 1st. =@cba\;@cba_a2\;@cba_oa\;@ace\;@acex\;@acex_ru\;@acex_sm\;@acex_usnavy\;@ofrp\;@fallujah\;pmc\;baf not sure about pmc and baf. and no \; on the end some files are owned by root those need to be changed.
  14. magaman

    Arma2 OA Ubuntu Server

    do not use sudo ./arma2oaserver start
  15. Cannot find an older version to download. As far as beta goes, the last 2 betas were fixes for the previous beta. Betas break more than they fix lol.
  16. This radio is a great thing on servers with alot of people. Any way of making it so it DOESNT require the beta?
  17. The default ports are 2302-2305 have to be open.
  18. I see 2 things wrong.: server.cfg does not have a mission loading thats why you get wait for host. In your startup change MODS to MOD
  19. Right, with no filter it works. Here's what I found out. If filter is already in there when game is started no servers will show. If you remove filter then servers will show. Then filter again and it works. So basically start game, remove filters, then refilter and it works.
  20. My filter doesnt work either. If I start the game without the beta it works fine.
  21. Working great on ubuntu 12.4 64 with 32libs installed. Thank You bis.
  22. Sorry to say that kind of thing happens alot after the introduction of the dayz mod. If your looking for some good gaming you can join us.
×