摘要:
wget http://nginx.org/download/nginx-0.8.47.tar.gzsudo tar zxvf nginx-0.8.47.tar.gzcd nginx-0.8.47sudo ./configure --prefix=/usr/local/nginx-0.8.47sudo makesudo make install在编译的过程中可能会出现以下提示:./configure: error: the HTTP rewrite module requires the PCRE library.You can either disable the module by usi 阅读全文
摘要:
首先添加用户(当然也可是使用root用户)格式:grant 权限 on 数据库名.表名 用户@登录主机 identified by "用户密码"; grant select,update,insert,delete on *.* to zhxia@'%' identified by '123456';或者所有权限GRANT ALL PRIVILEGES ON *.* TO zhxia@'%' ID... 阅读全文