Linux
把目录 /images/small 修改为可写可读可执行:
chmod 777 /images/small
SSL远程连接Linux服务器:
ssh -p 22 root@39.106.212.106
Apache
1.配置文件目录/etc/
mysql
1.mysql初次登录:
mysql -u root -p
,密码在\root\password.txt
下。
进入后更改:set password = password('123456');
2.远程连接
需要授权:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION;
flush privileges
select * from mysql.user;
端口支持:安全组配置,添加3360
端口支持
问题:
1.安装之后通过ip访问apache服务器失败,需要 安全组配置,添加80端口支持
2.阿里云系统磁盘初始化之后,ssh连接服务器出错
ssh-keygen -R 39.106.212.106
3.mysql初次登录密码:
在服务器\root\password.txt
,查看
4.文件上传失败,创建的文件夹权限问题,修改文件夹权限:chmod 777 upload
网友评论