centos
本文主要是想从虚拟机搭建的 centos 系统开始,尝试一些相关难题的复现以及攻关难题上,可能是生活中、或者工作中的突发奇想。 – 配置:vmware+centos7+mysql5.8
环境搭建
cd ~
# 相关插件以及配置的安装,mysql,npm,zsh,vim之类的,可自由选择
wget https://raw.githubusercontent.com/tyrantqiao/dataPlatform/master/install.sh
chomod +x ./install.sh
# zsh安装完后会跳到zsh窗口,ctrl+D跳回继续安装即可
# lamp安装时同理,ctrl+D跳回继续安装即可
# ant-design 、以及dataPlatform是自己写的项目,自行抉择
./install.sh
# 设置登录端口22,允许登录,账号密码,开放host以及端口
# 注明sudo su升上去时,会出现vim不存在的情况,请手动设置,或者通过`su`命令转用户
vim /etc/ssh/sshd_config
# 此处不做进一步阐述
service sshd restart
service network restart
# 开启启动ssh
systemctl enable sshd.service
# 如果ssh还是失败的,执行以下步骤进行检查
# 查看ens33 也没有inet的ip地址,若没有需要去查询网上的设置虚拟机的网络通信模式
ip addr
mysql 连接
mysql 安装在上步的 install.sh 中已经完成了,现在做的是机器连接虚拟机的数据库。
第一步(用户权限)
use mysql; select user,host from user; -- 若无相应权限的用户,则创建权限 grant all on *.* to %@'%' identified by "password"; flush privileges;
第二步(防火墙)
/etc/my.cnf 修改监听 host 为相应的 ip 或者 0.0.0.0 全部
netstat -anp | grep 3306
查询 port 是否开启
安装防火墙
systemctl stop firewalld.service systemctl disable firewalld.service systemctl mask firewalld.service yum install iptables-services -y systemctl enable iptables systemctl start iptables vi /etc/sysconfig/iptables #编辑防火墙配置文件 -A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT :wq! #保存退出 systemctl restart iptables.service #重启防火墙使配置生效 systemctl enable iptables.service #设置防火墙开机启动
权限
用户权限
# 首先创建用户,并设置密码
adduser qiao
passwd qiao
# 输入你自己的密码
······
# 紧接着我们开始设置系统只允许用新增用户登录,不允许用root登录
vim /etc/ssh/sshd_config
# 将PermitRootLogin修改为false
# 重启ssh服务
systemctl restart sshd
软件与服务
oh-my-zsh
# 更新yum
yum update -y
# 安装zsh和git
yum install zsh git -y
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# 如果是网络环境不好,墙太高的,请参考下面步骤
wget https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh
# 修改其中关于REPO、REMOTE的部分,改为gitee的内容
REPO=${REPO:-ohmyzsh/ohmyzsh}
REMOTE=${REMOTE:-https://github.com/${REPO}.git}
# 改为
REPO=${REPO:-mirrors/oh-my-zsh}
REMOTE=${REMOTE:-https://gitee.com/${REPO}.git}
chmod +x install.sh
sh install.sh
cd ~/.oh-my-zsh
git remote set-url origin https://gitee.com/mirrors/oh-my-zsh.git
git pull
# 搞定