readme

来自「这是国外的resip协议栈」· 代码 · 共 20 行

TXT
20
字号
to initialize a mysql database to an empty state, run the following commands:   mysql -u $user -p$pass $dbname < Users.sql   mysql -u $user -p$pass $dbname < Resources.sqlthese assume that you have an alias bound for mysql, or you have added themysql /bin directory to your path.you should also replace $user and $pass with the username and password you want to use to create the tables.  I recommend creating a separate database for the repro tables (called, creatively, "repro" in my case) and locating them there.  In any case, thename of the database you want to use should be passed as the third argument$dbname.Note -- there is no space between the -p and the $pass.  If you put a spacethere, mysql will choke.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?