lamp環境已搭建完成基礎之上 上傳owncloud-10.0.3.zip到Linux 解壓owncloud-10.0.3.zip [root@localhost ~]#unzip owncloud-10.0.3.zip 複製解壓後的文件到/var/www/html [root@localhost ...
lamp環境已搭建完成基礎之上
上傳owncloud-10.0.3.zip到Linux
解壓owncloud-10.0.3.zip
[root@localhost ~]#unzip owncloud-10.0.3.zip
複製解壓後的文件到/var/www/html
[root@localhost ~]# cp -r owncloud /var/www/html/
修改許可權
chown -R apache:apache /var/www/html/owncloud
chmod 777 /var/www/html/owncloud/config/
啟用apache重寫模式
vim /etc/httpd/conf/httpd.conf
查找並修改 AllowOverride None 為 Allowoverride All
創建owncloud資料庫 [root@localhost ~]# mysql -u root -p123456 Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 7 Server version: 5.5.56-MariaDB MariaDB Server Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> create database owncloud -> ; Query OK, 1 row affected (0.00 sec) MariaDB [(none)]> quit Bye 地址欄輸入http://192.168.171.131(你的IP)/owncloud/index.php 如果提示缺少dom模塊,下麵還有缺少的其他模塊可以不用管,本機測試成功 [root@localhost ~]# yum install php-dom [root@localhost ~]# systemctl restart httpd 再次輸入http://192.168.171.131(你的IP)/owncloud/index.php #index.php可不輸入 創建管理員賬號 存儲&資料庫---》配置資料庫---》選擇Mysql/Mariadb---> 資料庫用戶---》root 資料庫密碼---搭建lamp環境時創建的資料庫密碼(如123456) 資料庫名---》owncloud localhost---》localhost