馬仔資訊隨手記
Would you like to react to this message? Create an account in a few clicks or log in to continue.
馬仔資訊隨手記

馬仔資訊隨手記


您沒有登錄。 請登錄註冊

centos 操作設定

向下  內容 [第1頁(共1頁)]

1centos 操作設定   Empty centos 操作設定 周一 6月 24, 2019 4:27 pm

Admin


Admin

VirtualBox 如何安裝 Centos 7 並設定網路
https://blog.yowko.com/virtualbox-centos-7/
http://jimc1682000.blogspot.com/2015/09/centos-7-virtualbox.html
http://dic.vbird.tw/linux_server/unit10.php #鳥哥

安裝CentOS完成,使用nmtui (NetManager-TextUI)來進行設定
輸入「service network restart」,重啟網路服務
ip a #檢查網路設定

安裝apache
https://www.brilliantcode.net/170/centos-7-install-apache-httpd/
http://softcans.blogspot.com/2016/08/centos7-apache-server-install.html

安裝Apache
yum install httpd mod_ssl openssl

systemctl start httpd #啟動Apache,並且設定為開機自動啟動
systemctl enable httpd

關閉防火牆
systemctl stop firewalld.service
systemctl disable firewalld.service

CentOS 7 開啟/關閉SELinux
https://www.brilliantcode.net/145/centos-7-check-selinux-status-enabled-or-not/
vi /etc/selinux/config
SELINUX=disabled #永久停止SELinux

vi /etc/httpd/conf/httpd.conf #apache設定檔
Options Indexes FollowSymLinks #拿掉Indexes防止目錄列出
修改為
Options FollowSymLinks

<IfModule dir_module>         # 設定首頁檔名
   DirectoryIndex index.php index.htm index.html
</IfModule>

systemctl restart httpd


CentOS 7 開啟 UserDir 個人網頁模組
https://www.opencli.com/apache/rhel-centos-7-enable-userdir
https://dywang.csie.cyut.edu.tw/dywang/rhel7/node39.html
vi /etc/httpd/conf.d/userdir.conf
#UserDir disabled  #註解這一行
UserDir public_html #刪除註解
systemctl restart httpd



Admin 在 周一 7月 01, 2019 9:39 am 作了第 5 次修改

https://kinhorse.666forum.com

2centos 操作設定   Empty 回復: centos 操作設定 周二 6月 25, 2019 4:19 pm

Admin


Admin

CentOS 7 設定網路固定 IP
https://www.opencli.com/linux/rhel-centos-7-setup-static-ip

nmcli dev status #檢查網卡名稱

vi /etc/sysconfig/network-scripts/ifcfg-網卡名稱

將 BOOTPROTO=dhcp 改成 BOOTPROTO=static

IPADDR=192.168.0.100
NETMASK=255.255.255.0
GATEWAY=192.168.0.254
NM_CONTROLLED=no #設定這張網卡不受 Network Manager 管理, 直接讀取這個設定檔內容。

systemctl restart network.service #重新啟動網路



Admin 在 周日 6月 30, 2019 4:31 pm 作了第 3 次修改

https://kinhorse.666forum.com

3centos 操作設定   Empty 回復: centos 操作設定 周二 6月 25, 2019 4:25 pm

Admin


Admin

CentOS 7 更改 hostname
https://www.opencli.com/linux/redhat-centos-7-change-hostname

hostnamectl #檢查主機 hostname
hostnamectl set-hostname new_hostname

https://kinhorse.666forum.com

4centos 操作設定   Empty 回復: centos 操作設定 周二 6月 25, 2019 4:29 pm

Admin


Admin

CentOS 7 安裝設定 Samba
https://www.itread01.com/content/1529403606.html

yum install samba samba-client samba-common -y #YUM 安裝 Samba 及其相關套件

備份 smb.conf
cp /etc/samba/smb.conf /etc/samba/smb.conf.old

編輯Samba設定檔
vi /etc/samba/smb.conf

[global] #設定整體的環境

workgroup = Ubuntu #群組名稱自訂,會出現在Windows的網路芳鄰中

執行 testparm 命令,測試一下smb.conf 的語法是否正確。如果您看到 “Loaded services file OK.”的話,基本上就沒語法的設定問題了。

smbpasswd -a 使用者 #建立 samba 使用者的密碼的指令

systemctl start smb.service #啟動samba
systemctl enable smb.service #啟動samba,並且設定為開機自動啟動



Admin 在 周三 8月 14, 2019 5:15 am 作了第 2 次修改

https://kinhorse.666forum.com

5centos 操作設定   Empty 回復: centos 操作設定 周一 7月 01, 2019 9:38 am

Admin


Admin

解決 Could not resolve host: mirrorlist.centos.org
https://www.itread01.com/content/1552479606.html

vi /etc/resolv.conf
nameserver 8.8.8.8

systemctl restart network.service #重新啟動網路

https://kinhorse.666forum.com

6centos 操作設定   Empty 回復: centos 操作設定 周五 8月 09, 2019 4:32 am

Admin


Admin

網路校時
https://blog.gtwang.org/linux/linux-ntp-installation-and-configuration-tutorial/

yum install ntpdate -y #安裝ntpdate

ntpdate time.stdtime.gov.tw

https://kinhorse.666forum.com

7centos 操作設定   Empty 回復: centos 操作設定 周五 8月 09, 2019 4:38 am

Admin


Admin

vsftp
http://kerryitnote.blogspot.com/2018/09/centos-7-ftp-vsftpd.html

yum -y install vsftpd #安裝vsftp

systemctl restart vsftpd

systemctl enable vsftpd #讓服務在開機時就自動啟動

預設的 FTP 根目錄在 /var/ftp

vi /etc/vsftpd/vsftpd.conf #設定檔

https://kinhorse.666forum.com

8centos 操作設定   Empty 回復: centos 操作設定 周五 8月 09, 2019 7:53 am

Admin


Admin

https://kinhorse.666forum.com

9centos 操作設定   Empty 回復: centos 操作設定 周四 9月 12, 2019 8:40 am

Admin


Admin

自訂網頁錯誤訊息 403 及 404

vi /etc/httpd/conf/httpd.conf #編輯此檔,新增以下兩行
ErrorDocument 403 /errmsg/403.htm
ErrorDocument 404 /errmsg/404.htm

systemctl restart httpd #儲存後,重新啟動 apache

mkdir /var/www/errmsg #建立errmsg目錄

cd /var/www/errmsg/ #進入errmsg目錄,下載以下 403 及 404 自訂錯誤的網頁內容

wget http://web.hsps.chc.edu.tw/~office/computer/errmsg/403.htm
wget http://web.hsps.chc.edu.tw/~office/computer/errmsg/404.htm

https://kinhorse.666forum.com

回頂端  內容 [第1頁(共1頁)]

這個論壇的權限:
無法 在這個版面回復文章