fiveserver icon indicating copy to clipboard operation
fiveserver copied to clipboard

sites.google.com/site/fiveservercom/home offline !!

Open ToniFabri opened this issue 1 year ago • 2 comments

I need the tutorial to get the mysql codes to work on the server, the site is offline, is there another place or on github I can get these codes, thank you

ToniFabri avatar Nov 20 '23 14:11 ToniFabri

https://web.archive.org/web/20201102183724/https://sites.google.com/site/fiveservercom/win32-howto

mysql> create database fiveserver; Query OK, 1 row affected (0.00 sec)

mysql> grant select,insert,update on fiveserver.* to 'fiveserver'@'%' identified by 'we9le'; Query OK, 0 rows affected (0.00 sec)

mysql> grant select,insert,update on fiveserver.* to 'fiveserver'@'localhost' identified by 'we9le'; Query OK, 0 rows affected (0.00 sec)

mysql> create database sixserver; Query OK, 1 row affected (0.00 sec)

mysql> grant select,insert,update on sixserver.* to 'sixserver'@'%' identified by 'proevo'; Query OK, 0 rows affected (0.00 sec)

mysql> grant select,insert,update on sixserver.* to 'sixserver'@'localhost' identified by 'proevo'; Query OK, 0 rows affected (0.00 sec)

mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | fiveserver | | mysql | | performance_schema | | sixserver | | test | +--------------------+ 6 rows in set (0.00 sec)

Now we have the databases created and access to them configured, but we still need to create the schemas for these databases: meaning create the necessary tables. To do that execute these commands:

mysql> use fiveserver; Database changed mysql> source schema.sql Query OK, 0 rows affected (0.11 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 0 rows affected (0.05 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 0 rows affected (0.03 sec)

mysql> source alter_001_add_settings.sql Query OK, 0 rows affected (0.00 sec)

mysql> mysql> mysql> use sixserver; Database changed mysql> source schema6.sql Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.05 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.01 sec)

Query OK, 0 rows affected (0.00 sec)

Query OK, 0 rows affected (0.03 sec)

Query OK, 0 rows affected (0.05 sec)

mysql> source alter6_001_modify_profiles.sql Query OK, 0 rows affected (0.00 sec)

mysql>

We're done with this step. Quit the mysql client too, by entering:

mysql> exit

themasterz avatar Feb 09 '24 13:02 themasterz

Não tem como coloca servidor com Hamachi?

WagnerSami avatar Mar 15 '24 16:03 WagnerSami