Closed anth64 closed 2 months ago
Try
. run_pyenv.sh
python -m cuwo.server
Does that fix your issue?
No unfortunately, these are the results
anthony@~/Servers/cuwo$ . run_pyenv.sh
anthony@~/Servers/cuwo$ python -m cuwo.server
Traceback (most recent call last):
File "/home/anthony/.pyenv/versions/3.6.1/lib/python3.6/runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "/home/anthony/.pyenv/versions/3.6.1/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/home/anthony/Servers/cuwo/cuwo/server.py", line 736, in <module>
main()
File "/home/anthony/Servers/cuwo/cuwo/server.py", line 721, in main
server = CubeWorldServer(loop, config)
File "/home/anthony/Servers/cuwo/cuwo/server.py", line 473, in __init__
base.use_entities)
File "/home/anthony/Servers/cuwo/cuwo/server.py", line 111, in __init__
super().__init__(*arg, **kw)
File "/home/anthony/Servers/cuwo/cuwo/world.py", line 240, in __init__
raise FileNotFoundError('Missing asset file %r' % path)
FileNotFoundError: Missing asset file '/home/anthony/Servers/cuwo/data/data1.db'
anthony@~/Servers/cuwo$
You need to put the data1.db and data4.db files in the data
folder. In a future version, this will probably be downloaded automatically.
Where can I find these files?
Nevermind, found them. Just one more question. How can I safely exit the server, pressing Ctrl+C seems to screw things up. I type quit and exit when I try to exit the server but that does nothing.
Does typing /stop
work? cuwo should catch Ctrl + C
commands, but maybe this a regression?
The program recognizes the the /stop
command however, it gets stuck while saying Stopping...
. Here is an example of output.
anthony@~/Servers/cuwo$ ./run_server.sh
cuwo server started on Fri Jul 14 12:03:27 2017
Loaded script 'log'
Loaded script 'ddos'
Loaded script 'commands'
Loaded script 'welcome'
Loaded script 'ban'
Loaded script 'console'
Loaded script 'master'
Loaded script 'anticheat'
cuwo running on port 12345
Received response from master server
/stop
Stopping...
Now when I do press ctrl+C
to end the program, I have to press the keyboard shortcut several times before it will actually close the server. Here is an example output of me just pressing ctrl+C
once.
cuwo server started on Fri Jul 14 12:08:24 2017
Loaded script 'log'
Loaded script 'ddos'
Loaded script 'commands'
Loaded script 'welcome'
Loaded script 'ban'
Loaded script 'console'
Loaded script 'master'
Loaded script 'anticheat'
cuwo running on port 12345
Received response from master server
^CStopping...
Exception in callback CubeWorldServer.stop()
handle: <Handle CubeWorldServer.stop()>
Traceback (most recent call last):
File "/home/anthony/.pyenv/versions/3.6.1/lib/python3.6/asyncio/events.py", line 127, in _run
self._callback(*self._args)
File "/home/anthony/Servers/cuwo/cuwo/server.py", line 677, in stop
self.scripts.unload()
File "/home/anthony/Servers/cuwo/cuwo/script.py", line 195, in unload
for script in self.items.values():
RuntimeError: OrderedDict mutated during iteration
It prints out the same as posted above every time ctrl+C
is pressed.
EDIT: By that, I mean it spits out the same error message every time ctrl+C
is pressed.
Hopefully this helps in debugging, and sorry for the late reply. Also if you would like to know the distro of Linux I am using, it is "Linux Mint 18.2 Sonya".
Is this on the latest revision? Some of these bugs should have been fixed.
How can I check which revision I am using? I downloaded this using the second method (bootstrap.sh) on the wiki. So I would assume the latest?
So I used method 2 in the wiki to install the server, and upon running the server I get this.
Anybody sure as to what the issue is?
EDIT: This is on Linux btw.