1. 程式人生 > >Linux基礎系統優化

Linux基礎系統優化

conf linux ORC yun roo mirror inux host 重啟

1.查看yum源倉庫
  ls /etc/yum.repos.d/

2.查看CentOs-Base.repo文件
  [root@localhost yum.repos.d]# cat CentOS-Base.repo

3.配置yum源
  https://opsx.alibaba.com/mirror
  找到這個網站,然後找到centos7
  執行下載阿裏雲yum源
    wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
    yum clean all 清空yum軟件源
    yum makecache 生成緩存

4.查看yum源倉庫
  ls

5.安裝epel源,用於下載第三方額外的軟件(nginx,redis等等)
  yum install -y epel-release #通過這條命令安裝epel源,

6.安裝nginx軟件測試
  yum install nginx -y

7.系統服務管理命令
  啟動nginx服務

    systemctl start nginx   啟動nginx服務
    systemctl status nginx    查看nginx服務存活狀態

    systemctl stop nginx     停止nginx服務

    systemctl restart nginx 重啟nginx服務

8.此時瀏覽器訪問10.0.0.10:80

9.有時安裝好了,但是windows訪問不了,nginx服務
  這就是防火墻的問題了
    1)關閉系統自帶的selinux
      setenforce 0 臨時關閉
      getenforce 查看selinux狀態
      sed -i "s/enable/disable/" /etc/selinux/config
      永久關閉(需要重啟) 但是!!!在生產環境公司服務器上,慎用!你可別瞎重啟!!
    2)關閉軟件防火墻 iptables/firewalld
      iptables -F 清空防火墻規則
      systemctl disable firewalld #禁止防火墻開機自啟
      systemctl stop firewalld #關閉防火墻服務

9.uname -r 查看內核版本

1 [root@localhost yum.repos.d]# uname -r
2 3.10.0-862.el7.x86_64

10.cat /etc/redhat-release 查看linux發形版本

1 [root@localhost yum.repos.d]# cat /etc/redhat-release
2 CentOS Linux release 7.5.1804 (Core) 

11.添加用戶

1 [root@localhost yum.repos.d]# useradd wdd          添加wdd用戶,並創建wdd用戶組
2 [root@localhost yum.repos.d]# passwd wdd           為用戶wdd創建密碼
3 Changing password for user wdd.
4 New password: 
5 BAD PASSWORD: The password fails the dictionary check - it is too simplistic/systematic
6 Retype new password: 
7 passwd: all authentication tokens updated successfully.

  添加普通用時,會在/home/wdd 創建一個用戶家目錄

Linux基礎系統優化