Difference between revisions of "Инсталляция на ALT Linux:Настройка базы данных MySQL"

From EjudgeWiki
(Created page with " # service mysqld start # mysql mysql> CREATE DATABASE ejudge; mysql> CREATE USER 'ejudge'@'localhost' IDENTIFIED BY 'ejudge'; mysql> GRANT ALL ON ejudge.* TO 'ejudge'@'l...")
 
Line 1: Line 1:
 +
 +
 
  # service mysqld start
 
  # service mysqld start
 
  # mysql
 
  # mysql

Revision as of 18:32, 9 June 2015


# service mysqld start
# mysql
mysql> CREATE DATABASE ejudge;
mysql> CREATE USER 'ejudge'@'localhost' IDENTIFIED BY 'ejudge';
mysql> GRANT ALL ON ejudge.* TO 'ejudge'@'localhost';