Linux云计算架构-使用LAMP架构部署opensns微博网站

文章目录

  • Linux云计算架构-使用LAMP架构部署opensns微博网站
    • 1. 部署opensns微博网站
    • 2. 查看首页
    • 3. 查看后台

Linux云计算架构-使用LAMP架构部署opensns微博网站

1. 部署opensns微博网站

在部署opensns微博网站前,可以按照以下一篇博客,先行部署出LAMP架构,并测试架构的可用性。
scshop电商网站

# 上传opensns的压缩包
[root@master ~]# ll /usr/local/src/opensnsfree.zip
-rw-r--r--. 1 root root 29442282 7月   7 20:46 /usr/local/src/opensnsfree.zip
[root@master ~]# unzip /usr/local/src/opensnsfree.zip -d /var/www/html/
# 可以看到opensns_open目录下有个install.php安装页面
[root@master ~]# cd /var/www/html/
[root@master html]# ll
总用量 8
-rw-r--r--.  1 root root   22 7月   7 08:20 index.php
drwxr-xr-x. 14 root root 4096 9月  11 2018 opensns_free
[root@master html]# cd opensns_free/
[root@master opensns_free]# ls
1.txt      api.php      Data         license.txt  README.md  update.sql
Addons     Application  favicon.ico  OcApi        Rewrite    Uploads
admin.php  cc.php       index.php    Public       Theme      v5.sql
api        Conf         install.php  QuickPacks   ThinkPHP


# 配置/var/www/html/的权限以及可写性
# 配置/var/www/html/的权限
[root@master ~]# chown -R apache:apache /var/www/html/
[root@master ~]# chmod -R 755 /var/www/html/
# 配置/var/www/html/可写性
[root@master ~]# chcon -R -t public_content_rw_t /var/www/html/
[root@master ~]# setsebool -P allow_httpd_anon_write on
# 设置selinux为disabled或者permissive
# 永久设置
[root@master ~]# vim /etc/selinux/config
SELINUX=permissive
# 重启生效
[root@master ~]# reboot

输入网址进行安装:
http://192.168.8.141/opensns_free/install.php
Linux云计算架构-使用LAMP架构部署opensns微博网站_第1张图片
Linux云计算架构-使用LAMP架构部署opensns微博网站_第2张图片
Linux云计算架构-使用LAMP架构部署opensns微博网站_第3张图片
Linux云计算架构-使用LAMP架构部署opensns微博网站_第4张图片
Linux云计算架构-使用LAMP架构部署opensns微博网站_第5张图片
可以看到,opensns微博网站已经搭建成功。

2. 查看首页

Linux云计算架构-使用LAMP架构部署opensns微博网站_第6张图片
输入创始人账号密码,即可登录微博网站的首页。
Linux云计算架构-使用LAMP架构部署opensns微博网站_第7张图片

3. 查看后台

Linux云计算架构-使用LAMP架构部署opensns微博网站_第8张图片
输入创始人账号信息即可登录后台。
Linux云计算架构-使用LAMP架构部署opensns微博网站_第9张图片
以上就是使用LAMP架构部署opensns微博网站的全部内容了,学习学习!!!

你可能感兴趣的:(Linux云计算架构工程师)