このコミットが含まれているのは:
2022-12-25 14:31:04 +09:00
コミット 1bc45ce869
1個のファイルの変更26行の追加0行の削除

ファイルの表示

@ -80,6 +80,32 @@ tmux
./ergo run
```
# MySQL
```
mysql_install_db --user=mysql --basedir=/usr/local --datadir=/usr/home/mysql/data
mysql_secure_installation
```
Choose your root password, and just hit enter on every other question.
```
mysql -p
```
```
CREATE USER 'ergo'@'localhost' IDENTIFIED BY '#FUCKINGADD';
GRANT ALL PRIVILEGES ON * . * TO 'ergo'@'localhost';
```
```
mysql -u ergo -p
```
```
create database ergo_history;
```
CTRL+B, and then D to disconnect from tmux and have it running in the background.
All what's left to do is to replace the server name, the B32 address, and all that for whatever you have.\