Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Permission denied

Status
Not open for further replies.
Newbie Spellweaver
Joined
Mar 2, 2011
Messages
5
Reaction score
0
Just installed ubuntu (On VMware) to fully create my own game server. I have everything ready with the database (Navicat).

Everything works execpt to start the server.

typing

Code:
[COLOR="Red"]root@ubuntu:~# cd root
root@ubuntu:~/root# ./qd <-- The file i have to type to start the server with..[/COLOR]

All im getting is
Code:
[COLOR="red"]cd: 2: can't cd to /root/authd
./qd: 3: ./authd: Permission denied
cd: 5: can't cd to /usr/rain/gacd
./qd: 6 ./gacd: not found
cd: 8: can't cd to /usr/rain/gdeliveryd
./qd: 9: ./gdeliveryd: not found
cd:11: can't cd to /usr/rain/glinkd
A really need some help because i want this to work as fast as possible [/COLOR]


Notice: Updated, installed, all the files is located at root/root.

I really really want a server that works :)

It's jade dynasty, kinda noob on this side of coding-
 
Newbie Spellweaver
Joined
Jul 27, 2005
Messages
75
Reaction score
4
First of all why you install all files in /root ??

anyway you need to set permission

Code:
chmod -R 0755 /usr/rain

give thanks to xAtticusx
 
Newbie Spellweaver
Joined
Mar 2, 2011
Messages
5
Reaction score
0
Where should i install it then xD?


Alright i'll try that,

Thanks

---------- Post added at 11:15 PM ---------- Previous post was at 10:40 PM ----------

I tryed chmod -R 0755 /usr/rain

But it still give me the message.


Permission denied..
 
Genesis?Is it a new drug?
Joined
Apr 8, 2010
Messages
512
Reaction score
96
You need to give permission to the start script, not only to the rain folder...

chmod 0755 qd

chmod 0755 stop

And, chek in the stop... the command is "killall"... this is a program, if you doesn't have, the stop script will not work.

so do this: nano stop

change the killall to "pkill" (without quotes)

Good Luck.
 
Newbie Spellweaver
Joined
Jul 27, 2005
Messages
75
Reaction score
4
move your /rain to /usr or try to set permission to /root/usr/rain or /root/rain where ever /rain is... fact is you need to set permission to rain folder and its contains

if you are not sure where it should be open qd and read the location
 
Last edited:
Status
Not open for further replies.
Back
Top