我想知道lamp环境安装discuz的步骤,最好有文档下载
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我想知道lamp环境安装discuz的步骤,最好有文档下载相关的知识,希望对你有一定的参考价值。
我看网上说的,安装discuz要上传东西?是上传什么?往哪传?
上传 discuz 的网站程序,上传到你的网站下,比如,你的网站是 www.5299tuan.com ,就上传的到你的网站的根目录下,然后运行 www.5299tuan.com/install 就可以安装了,在安装的过程中需要你有mysql数据的账号和密码,填好就可以。 参考技术A 把discuz上传到您在linux下的配置的workspace,然后去浏览器中执行installLAMP环境下,安装Discuz!
安装Discuz!
mkdir /data/www
cd /data/www
wget http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_GBK.zip
unzip Discuz_X3.2_SC_GBK.zip
ls
mv upload/* .
ls
rm -rf readme/ utility/ upload/ Discuz_X3.2_SC_GBK.zip
ls
ps aux |grep httpd
vim /usr/local/apache2/conf/httpd.conf
Include conf/extra/httpd-vhosts.conf
vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
# /usr/local/apache2/bin/apachectl start 开启80端口
卸载系统自带MYSQL
yum remove mysql
新装MYSQL绝对路径 /usr/local/mysql/bin/mysql
为了方便操作,直接输入mysql就可以运行
写一个path
vim /etc/profile.d/path.sh
#!/bin/bash
export PATH=$PATH:/usr/local/mysql/bin
:wq
# source /etc/profile.d/path.sh
mysql
mysql> create database discuz;
mysql> grant all on discuz.* to ‘eddie‘@‘localhost‘ identified by ‘eddielinux‘;
本文出自 “12202652” 博客,请务必保留此出处http://12212652.blog.51cto.com/12202652/1888764
以上是关于我想知道lamp环境安装discuz的步骤,最好有文档下载的主要内容,如果未能解决你的问题,请参考以下文章