CentOS 配置網絡卡 FTP 安裝AMP

2022-01-23 02:34:20 字數 1768 閱讀 8217

這篇短文記錄了從拿到伺服器的root賬號和密碼後,如何部署伺服器的文章。本篇文章適合給linux初學者參考。

paddwd root

a 在不重啟的情況下,繫結ip位址

ifconfig eth0:1 x.x.x.x netmask 255.255.255.0

ifconfig eth0:2 x.x.x.x netmask 255.255.255.0

b 儲存配置資訊到檔案

1 拷貝配置資訊

cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0:1
cp /etc/sysconfig/network-scripts/ifcfg-eth0 /etc/sysconfig/network-scripts/ifcfg-eth0:2

2 使用vi命令,修改對應的配置檔案

vi /etc/sysconfig/network-scripts/ifcfg-eth0:1

device=eth0

bootproto=none

hwaddr=00:1e:90:ee:2c:6f

onboot=yes

netmask=255.255.255.0   #這裡填寫服務商提供的子網掩碼

ipaddr=x.x.x.x       #這裡填寫你要分配的ip位址

gateway=x.x.x.x       #這裡填寫服務商提供的閘道器ip

type=ethernet

service network restart

* 或者儲存 ifconfig 的命令到 /etc/rc.d/rc.local 檔案中

預設centos上已經安裝了apache 2.2,我們只需要安裝mysql,php即可。安裝過程也很簡單,使用yum命令。這裡有一遍具體將如何安裝的文章

centos 5.x yum安裝lamp(apache+mysql+php)

或者參考這裡:centos — 搭建 lamp 執行環境

配置apache

centos 5 yum安裝與配置vsftpd ftp伺服器

== vsftpd ==

今天用root使用者登入vsftpd出現530 login incorrect錯誤與530 permission denied錯誤。 

530 permission denied 

原因是/etc/vsftpd/vsftpd.conf裡userlist_enable=yes 

/etc/vsftpd/user_list 含有root名單 

2種解決辦法: 

530 login incorrect錯誤 

CentOS 配置網絡卡 FTP 安裝AMP

centos 配置網絡卡 ftp 安裝amp 修改root使用者密碼 paddwd root 配置多ip位址 a 在不重啟的情況下,繫結ip位址 ifconfig eth0 1 x.x.x.x netmask 255.255.255.0 ifconfig eth0 2 x.x.x.x netmask...

CentOS安裝和配置FTP

1.安裝vsftpd 安裝vsftpd yum install y vsftpd 設定開機啟動 systemctl enable vsftpd.service 重啟 service vsftpd restart 檢視vsftpd服務的狀態 systemctl status vsftpd.servic...

Centos網絡卡配置

安裝完成後,在esxi下,如果網絡卡型別為虛擬,則centos5.5無法使用網絡卡。解決方法 1 新增網絡卡,e1000。2 ifconfig a,檢視網絡卡資訊。3 重啟網路服務,restart network service。4 修改 etc sysconfig network scripts ...