首页 > 技术随笔

Typecho在Tengine下pathinfo的问题(/index.php/xxx/)

打开网站的 .conf 文件 server 段 #error_page 404 /404.html; #error_page 502 /502.html; # 添加下面一段 location ~ [^/]\.php(/?.*)$ { fastcgi_split_path_info ^(.+?\.php)(/.+)$; fastcgi_pass unix:/dev/shm/php-cgi.sock; fastcgi_index index.php; include fastcgi.conf; } location ~ [^/]\.p...

MySQL允许远程访问

授权用户远程访问数据库 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password'; FLUSH PRIVILEGES; 授权用户远程访问数据库(带管理权限) GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password'WITH GRANT OPTION; FLUSH PRIVILEGES; 取消授权 REVOKE ALL ON *.* FROM 'root'@'%'; FLUSH PRIVILEGES;

重置MySQL密码

禁用mysql权限表 vi /etc/my.cnf 添加如下一行 skip-grant-tables 重启mysql service mysql restart 进入mysql修改密码 mysql -u root -p mysql> USE mysql; mysql> UPDATE mysql.user SET authentication_string = PASSWORD('MyNewPass') WHERE User = 'root' AND Host = 'localhost'; mysql> FLUSH PRIVILEGES; mysql> quit ...

阿里云 CentOS 7.2 PHP7 LNMP配置

更新系统软件 yum update 安装编译工具 yum install gcc automake autoconf libtool gcc-c++ 安装服务端程序(二选一) (a) nginx 安装nginx源 yum localinstall http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm 安装nginx yum install nginx 启动nginx service nginx start 成功显示: Redirecting to /bin...

最新文章

最近回复