ubuntu14.04.1配置apache與yum
apt-get install apache2
2、默認網站根目錄
Apache的安裝路徑為/var
默認的網站根目錄的路徑為/var/www/html
3、配置apache自啟動
Apache2.conf 位置: /etc/apache2/apache2.conf
vim /etc/apache2/apache2.conf
在打開的apache2.conf文件尾部添加如下信息:
#ServerName
ServerName [ip地址]
4、重啟apache
目錄:/etc/init.d/apache2 restart
./apache2 restart
5、重啟電腦,檢測服務能否自啟動;本機訪問
瀏覽器輸 http:[之前配置的ip地址] 回車之後看到
配置基於http的包更新源
1、在終端窗口中輸入"sudo vi /etc/apache2/apache2.conf" ,回車,找到"<Directory /var/www/>"的位置,更改"/var/www/"為新的根目錄就可以了
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
2,在終端窗口中輸入"sudo vi /etc/apache2/sites-available/000-default.conf"-->回車-->找到"DocumentRoot /var/www/html"的位置-->更改"/var/www/html"為新的根目錄就可以了,這裏我把它更改為"/var/www/" 或者也可以自己新建一個repo_server.conf,裏面配置如下:
ServerAdmin [email protected]
DocumentRoot /var/www/repo
<Directory ‘/var/www/repo‘>
Options Includes FollowSymLinks MultiViews
AllowOverride None
Require all granted
</Directory>
ErrorLog /var/log/apache2/repo_server-error.log
CustomLog /var/log/apache2/repo_server.log common
</VirtualHost>
註:repo下要拷貝iso上的dists目錄過來
3、配置端口
在/etc/apache2/ports.conf
輸入Listen :28000
保存退出
第六步:重啟Apache:
在終端窗口中輸入"sudo /etc/init.d/apache2 restart" 回車,輸入root用戶密碼,回車,重啟成功
客戶端配置
1、找到/etc/apt/sources.list
2、輸入deb [arch=amd64] http://11.11.177.72:28000 (dists)ngiam main
3、保存退出即可
ubuntu14.04.1配置apache與yum