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...")  | 
			
(No difference) 
 | 
Revision as of 18:25, 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';