首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >Ubuntu 安装phpMyAdmin + 配置nginx

Ubuntu 安装phpMyAdmin + 配置nginx

作者头像
悟空聊架构
发布2018-10-10 10:18:26
发布2018-10-10 10:18:26
2.1K0
举报

0x01 安装phpMyAdmin

```

sudo apt-get install phpmyadmin

```

0x02 添加链接

```

sudo ln -s /usr/share/phpMyAdmin /usr/share/nginx/html

```

0x03 配置nginx

添加server节点,监听端口8001

代码语言:javascript
复制
server {
charset utf-8;
client_max_body_size 128M;
 
listen 8001; ## listen for ipv4
#listen [::]:80 default_server ipv6only=on; ## listen for ipv6
 
server_name phpmyadmin;
root /usr/share/phpmyadmin ;
index index.php;
 
 
location / {
# Redirect everything that isn't a real file to index.php
try_files $uri $uri/ /index.php$is_args$args;
}
 
# uncomment to avoid processing of calls to non-existing static files by Yii
#location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
# try_files $uri =404;
#}
#error_page 404 /404.html;
 
# deny accessing php files for the /assets directory
location ~ ^/assets/.*\.php$ {
deny all;
}
 
location ~ \.php$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
#fastcgi_pass unix:/var/run/php7.2-fpm.sock;
try_files $uri =404;
}
 
location ~* /\. {
deny all;
}

0x04 重启nginx

```

sudo service nginx restart

```

0x05 测试

1.访问http://127.0.0.1:8001

2.登陆

用户名:root

密码:abc123_

作  者: Jackson0714 出  处:http://www.cnblogs.com/jackson0714/ 关于作者:专注于微软平台的项目开发。如有问题或建议,请多多赐教! 版权声明:本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接。 特此声明:所有评论和私信都会在第一时间回复。也欢迎园子的大大们指正错误,共同进步。或者直接私信

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018-09-19 ,如有侵权请联系 cloudcommunity@tencent.com 删除
目录
  • 0x01 安装phpMyAdmin
  • 0x02 添加链接
  • 0x03 配置nginx
  • 0x04 重启nginx
  • 0x05 测试
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档