安装配置discuz

cd /data/www

[root@localhost www]#wget  http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_GBK.zip

[root@localhost www]# yum install unzip

[root@localhost www]# unzip Discuz_X3.2_SC_GBK.zip

[root@localhost www]# ls upload(可以看到网站的内容)

[root@localhost www]# mv upload/* ./

[root@localhost www]# mv Discuz_X3.2_SC_GBK.zip ../

[root@localhost www]# rm -rf upload/ utility/ readme/

在浏览器中输入www.123.com/install/,会出现discuz图形安装界面,点我同意,会出现很多目录不可写,为啥不可写?因为ps aux|grep httpd,httpd以daemon用户运行

[root@localhost www]# chown -R daemon:daemon config/ data uc_client/data uc_server/data

回到浏览器刷新,下一步,再全新安装discuz

配置mysql:

[root@localhost www]# /etc/init.d/mysqld start

[root@localhost www]# chkconfig --add mysqld

[root@localhost www]# chkconfig mysqld on

[root@localhost www]# vi /etc/profile

加入

export PATH=$PATH:/usr/local/mysql/bin

[root@localhost www]# source /etc/profile(执行会即时生效)

[root@localhost www]# mysqladmin -uroot password '838024'

[root@localhost www]# mysql -uroot -p(登录)

mysql> create database discuz;

mysql> grant all on *.* to 'user1'@'localhost' identified by 'discuz';(授权)

[root@localhost www]# mysql -uuser1 -p(user1也可以登录)

[root@localhost www]# flush privileges;(grant后刷新缓存)

回到discuz浏览器,数据库名为discuz,数据库用户名为user1,数据库密码discuz,管理员密码

到此discuz论坛安装完毕

 


你可能感兴趣的:(浏览器,用户,discuz)