github.com hello world

Welcome to Hexo! This is your very first post. Check documentation

Quick Start

More info: Deployment

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#create database `salt` default character set utf8 default collate utf8_general_ci;
use `salt`;
-- table structure for table `jids`;
drop table if exists 'jids';
create table 'jids' (
`jid` varchar(255) not NULL,
`load` mediumtext not null,
unique key `jid` (`jid`)
) engine=InnoDB default charset=utf8;
--table structure for table `salt_returns`
drop table if exists `salt_returns`;
create table `salt_returns` (
`fun` varchar(50) not null,
`jid` varchar(255) not null,
`return` mediumtext not null,
`id` varchar(255) not null,
`success` varchar(10) not null,
`full_ret` mediumtext not null,
`alter_time` TIMESTAMP default CURRENT_TIMESTAMP,
KEY `id` (`id`),
KEY `jid` (`jid`),
KEY `fun` (`fun`)
) engine=InnoDB default charset=utf8;
grant all on salt.* to [email protected]'172.21.37.%' identified by "123456"
flust privileges;