千家信息网

yum安装lamp+discuz

发表于:2025-01-25 作者:千家信息网编辑
千家信息网最后更新 2025年01月25日,首先安装httpd 相关软件包yum install httpd httpd-devel httpd-manual httpd-tools -y启动httpd服务service httpd resta
千家信息网最后更新 2025年01月25日yum安装lamp+discuz

首先安装httpd 相关软件包

yum install httpd httpd-devel httpd-manual httpd-tools -y

启动httpd服务

service httpd restart

将httpd服务添加到开机自启动

chkconfig httpd on

此时在浏览器中输入本机ip已经能打开apache测试网站,注意修改防火墙策略

安装mysql

yum install mysql mysql-devel php-mysql mysql-server -y

将mysqld服务加到开机自启动

chkconfig mysqld on

启动mysql服务

service mysqld start

安装php及相关软件包

yum install php-common php php-devel php-gd php-imap php-ldap php-mbstring php-pear php-xml php-xmlrpc -y

cd /var/www/html/

vim index.php


phpinfo();

?>


设置管理员的密码为root


iptables -F

setenforce 0


启动httpd服务

service httpd restart

此时在浏览器中输入本机ip已经能打开php测试网站




在下面地址下载PHP论坛软件

http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_UTF8.zip

unzip Discuz_X3.2_SC_UTF8.zip



将upload内容复制到/var/www/html目录下


[root@centos html]# cp -a /usr/local/src/upload/* ./

将下面目录给予写权限

[root@centos html]# chmod -R o+w ./{data,config,uc*}





浏览器输入server IP地址,出现论坛的安装界面





0