zoukankan      html  css  js  c++  java
  • 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登录

    Ubuntu 14.04

    sed -i 's/without-password/yes/g' /etc/ssh/sshd_config
    

    Ubuntu 16.04

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

    重启服务

    service ssh restart
    

    6、踢出终端tty用户

    pkill -kill -t tty
    

    7、删除普通用户

    8、时间同步

    echo "$((RANDOM%60)) $((RANDOM%24)) * * * /usr/sbin/ntpdate time1.aliyun.com" >> /etc/crontab
    

    9、安装监控系统

    apt-get install zabbix-agent
    

    10、配置pip国内源

    mkdir .pip
    cat >> .pip/pip.conf <<EOF
    [global]
    trusted-host =  pypi.douban.com
    index-url = http://pypi.douban.com/simple
    EOF
    

    附:配置IP

    修改文件/etc/network/interfaces

    auto eth0
    iface eth0 inet static
    address  10.0.0.100
    netmask  255.0.0.0
    gateway  10.0.0.1
    dns-nameservers 114.114.114.114
    
    ssserver -p 443 -k wzlinux -m aes-256-cfb --log-file /tmp/ss.log --worker 2 -d start
    python server.py -p 443 -k password -m aes-256-cfb -O auth_sha1_v4 -o http_simple
    #说明:-p 端口 -k 密码  -m 加密方式 -O 协议插件 -o 混淆插件
    
  • 相关阅读:
    演示使用string对象(续)
    P2216 [HAOI2007]理想的正方形 单调队列
    SP1805 HISTOGRA
    P4556 [Vani有约会]雨天的尾巴 树链剖分 线段树合并
    codeforces 600E 线段树合并
    HDU2197 本原串
    P3806 【模板】点分治1
    牛客10 Popping Balloons
    P3261 [JLOI2015]城池攻占 左偏树
    P4549 【模板】裴蜀定理
  • 原文地址:https://www.cnblogs.com/wzlinux/p/10148119.html
Copyright © 2011-2022 走看看