VPS help
#1

I have installed my server in vps with Grand Larceny script. Now i have uploaded my script but don't know how to restart the console.
Can some one help me?
Reply
#2

pawn Код:
Type: top
// wait 1-2 seconds and when samp03svr is first (being able to see its ID)
Press: Q
Type: kill ID_HERE
// The ID is at the left side when you type "top", the id of samp03svr
Type: cd samp03
// NOTE: Actually do cd path_for_samp03_folder (depending on where you added the server package)
nohup ./samp03svr &
Done.
Reply
#3



There is no samp03svr id
and when i try to kill sa-mp user id. A error pops up.
Reply
#4

If you do top and wait for 1-2 seconds, if it does not show samp03svr then the server is not running.

If the server is not running then do the next steps (excluding the top) to start it.
Reply
#5

you dont have WHM? you can kill samp process from there.

else use

pidof ./samp03svr
Reply
#6

Bro, it was simple
just need to go to the directory
cd samp03

and perform the command
nohup

thanks.
Reply
#7

sorry for double posting.

Friends, do you know how to install mysql on vps?
Reply
#8

try "yum install mysql", have never done that, but could be it works.
Reply
#9

I don't understand. I didn't heard about that type of stuffs. Can you explain some steps. On how to install mysql and get mysql username, password, database etc.
Reply
#10

I installed MySQL yesterday on a VPS. (Thanks to Mark™).

pawn Код:
yum -y install mysql-devel mysql-server
Quote:
Originally Posted by Mark™
Follow these steps as mentioned.

1) /etc/init.d/mysqld stop

2) mysqld_safe --skip-grant-tables &

3) mysql -u root

4) Setup new MySQL root user password

use mysql;
update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';
flush privileges;
quit

5) Stop MySQL Server: /etc/init.d/mysqld stop

6) Start MySQL server and test it: mysql -u root -p
To start MySQL Server:
pawn Код:
service mysqld start
For creating a database through SHH, read: http://vps2.me/create-mysql-database-with-ssh-command/
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)