Debian安装完成(Debian还没安装请读我第一篇Debian安装)
接下来我们要安装以下各种服务程序,使它能支持我们的BS系统。
ssl支持openssl
内存数据库redis-server
ftp服务vsftpd
http服务apache2
程序服务php,php-sqlite3,php-redis,php-imagick
php插件swoole
首先安装wget
apt -y install wget
接着下载安装脚本
wget -c https://jiaozhiguan-1258621244.cos.ap-guangzhou.myqcloud.com/system/first.sh
给脚本加权限
chmod +x first.sh
开始安装
./first.sh
设置服务器IP(默认是dhcp)
nano /etc/network/interfaces
原文:
iface enp9s0 inet dhcp(默认是dhcp路由自动分配IP)(这里enp9s0是指你网卡的名称,你的名称可能不一样,系统随机命名的。)
改为:
iface enp9s0 inet static(改为静态自定IP)
address 192.168.1.108(自定IP地址)
netmask 255.255.255.0(掩码)
gateway 192.168.1.1(网关)
ctrl+s,ctrl+x 保存退出
reboot 重启
客户机设置
修改客户机上
c:/windows/system32/drivers/etc/hosts文件
末尾加上
192.168.1.108 www.bluesky.com
192.168.1.108 www.sr.com
可能360会拦截修改,要通过
安装chrome浏览器(https://pc.qq.com/ 可以下载)
能成功访问 http://www.bluesky.com 就安装成功了
接下来继续看我专栏文章https://blog.csdn.net/wish_blue_sky