mysql -u root -p |
show databases; |
use Bugfree |
Update bf_test_user set password = md5(‘111111’) where username=’admin’; |
update bf_test_user set password = md5('******') where username = 'admin'; |
server { listen 82; //访问的端口 server_name 19*.***.***.***; index index.html index.htm index.php; root /usr/share/nginx/html/phpMyAdmin; /* root /usr/share/nginx/html后添加安装的文件名,这样url就可以简化成 http://19*.***.***.***:82,否则需要输入的url则会为 http://19*.***.***.***:82/phpMyAdmin */ location ~ \.php$ { # root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /$document_root$fastcgi_script_name; include fastcgi_params; } |
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) | Powered by Discuz! X3.2 |