• yum安装wget
yum -y install wget
  • 删除ssh信息
ssh-keygen  -R '服务器IP'
  • mysql5.7
// 进入自己的下载数据文件没有需要创建
cd /home/data
// 下载mysql5.7安装源
wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm
// 安装mysql5.7安装源
yum -y localinstall mysql57-community-release-el7-11.noarch.rpm
// 在线安装mysql(下载东西比较多,耐心等待)
yum -y install mysql-community-server
// 启动mysql
systemctl start mysqld
// 设置开机启动
systemctl enable mysqld
systemctl daemon-reload
// 修改root登录密码(在文件中找到默认密码 root@localhost:后面的随机字符串)
vim /var/log/mysqld.log
// 使用此密码登录root
mysql -u root -p
// 输入上面获取的密码正确登录之后
ALTER USER 'root'@'localhost' IDENTIFIED BY '新密码';
// 设置允许远程登录
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '新密码' WITH GRANT OPTION;
// 推出mysql
exit
// 重启myqsl
systemctl restart mysqld
### 如果服务器是 CentOS7,将 MySQL 服务加入防火墙 已经允许远程链接报错2003执行以下
sudo firewall-cmd --zone=public --permanent --add-service=mysql
// 返回success。然后继续执行
sudo systemctl restart firewalld
  • yum安装redis
// 安装
yum install redis
### 如果没有可用redis执行以下命令
**yum install epel-release**
// 启动
systemctl start redis.service
// 设置开机启动
systemctl enable redis.service
  • yum安装nginx
// 安装nginx使用yum进行Nginx安装时,Nginx配置文件在`/etc/nginx`目录下。
yum -y install nginx
// 卸载nginx
yum remove nginx
// 添加nginx源(安装报错执行此命令)
# rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
// 设置开机启动
systemctl enable nginx
// 启动服务
service nginx start
// 停止服务
service nginx stop
// 重启服务
service nginx restart
// 重载配置
service nginx reload
  • yum安装nodejs
### 安装
sudo yum install -y nodejs
### 卸载
yum remove nodejs npm -y
### 安装nodejs管理器
npm install -g n
### 安装最新版本
n latest
### 安装指定版本
n 8.11.3
### 切换指定版本
n
### 切换失败
### 查看安装位置
$ which node
/usr/local/bin/node #举个例子
### 打开变量文件
vim ~/.bash_profile
### 添加到尾部
export N_PREFIX=/usr/local #node实际安装位置
export PATH=$N_PREFIX/bin:$PATH
### 执行生效
source ~/.bash_profile
### 结局 yarn build 报错
npm config set scripts-prepend-node-path true

边边起
0 声望2 粉丝