阿里云部署,ubuntu, 连接服务器 |更新源| 安装node |安装mysql

时间:2024-01-03 16:33:02

1、连接服务器

xshell 新建连接

ssh root@1.1.1.1

2、更新源

apt-get update

3、安装node

apt-get install -y curl

curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -

sudo apt-get install -y nodejs

4、安装mysql

apt-get install mysql-server

apt-get install mysql-client

apt-get install libmysqlclient-dev