由零開始至建成加密網站及中央儲存中心
分以下幾部份論述
01 組裝小型電腦
02 安裝作業系統
03 安裝LAMP伺服器
04 安裝Drupal構建網站
05 安裝Wordpress構建綱詀
06 安裝Certbot將網詀加密
07 安裝NFSD、SMBD、及VSFTPD
08 簡單總結
01 組裝小型電腦
早在2016年我在HKEPC發表過組裝三部小型電腦過程,可在以下連結參閱﹕
https://www.hkepc.com/forum/viewthread.php?tid=2311276
02 安裝作業系統
在2017年發表過介紹安裝不同Linux作業系統,可參閱﹕
https://www.hkepc.com/forum/viewthread.php?fid=24&tid=2354949&extra=&page=3dor
安裝ArchLinux全紀錄﹕
https://www.hkepc.com/forum/viewthread.php?tid=2367798
安裝BSD三兄弟全紀錄﹕
https://www.hkepc.com/forum/viewthread.php?tid=2419279
https://www.hkepc.com/forum/viewthread.php?tid=2419080
https://www.hkepc.com/forum/viewthread.php?tid=2418406
最受歡迎及容易使用的應是﹕Ubuntu、Linux Mint、Fedora、Centos….
選擇多人用的會有比較好的網上支緩。
03 安裝LAMP
今次我用Linux Mint搭載LAMP
安裝 LAMP
sudo apt-get install lamp-server^ -y
測試 Apache
http://localhost
測試 PHP
sudo nano /var/www/html/info.php
加入以下一行
Then CTRL+X then y and Enter
溜灠器𨧞入:
http://localhost/info.php
安裝 PHPMyAdmin
sudo apt-get install phpmyadmin -y
預設的使用者是phpmyadmin
進入mysql設定root的密碼
Login to mysql
sudo mysql -u root
ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘new-password’;
增加使用者並取得所有權限﹕
Grant privileges to a new user execute below command in mysql interface:
“replace new-user with the name you need”
CREATE USER ‘new-user’@’localhost’ IDENTIFIED BY ‘password’;
GRANT ALL PRIVILEGES ON *.* TO ‘new-user’@’localhost’;
FLUSH PRIVILEGES;
登出sql
exit
04 安裝Drupal構建網站
https://www.hkepc.com/forum/viewthread.php?tid=2598106
05 安裝Wordpress構建綱站
https://www.hkepc.com/forum/viewthread.php?tid=2598491
06 安裝Certbot將網詀加密
https://www.hkepc.com/forum/viewthread.php?tid=2598824
07 安裝NFSD、SMBD、及VSFTPD
https://www.hkepc.com/forum/viewthread.php?tid=2599047
08 簡單總結
以上都是我在HKEPC已發表的內容,均是「實戢」所得,所有內容都是真實操作過,將由零至建作加密網站來一個𢑥整,方便查閱。