Ubuntu 新装服务器部署流程

前端之家收集整理的这篇文章主要介绍了Ubuntu 新装服务器部署流程前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、设定时区

rm -f /etc/localtime
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

2、配置apt-get源

sed -i 's/us.archive/cn.archive/g' /etc/apt/sources.list
sed -i 's/security.ubuntu/cn.archive.ubuntu/g' /etc/apt/sources.list

3、修改主机名

vim /etc/hostname

4、安装软件包

apt-get install lrzsz ntpdate

5、开启root登录

sed -i 's/prohibit-password/yes/g' /etc/ssh/sshd_config
service ssh restart

6、踢出终端tty用户

pkill -kill -t tty

7、删除普通用户

8、安装监控系统

apt-get install zabbix-agent

9、配置pip国内源

mkdir .pip
cat >> .pip/pip.conf <
原文链接:/ubuntu/350480.html

猜你在找的Ubuntu相关文章