Blogger Information
Blog 3
fans 1
comment 0
visits 5100
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
搭建linux服务器
Sunday灬燃的博客
Original
1217 people have browsed it

一、服务器选择:

阿里云服务器

服务器版本:Linux ubuntu 1804

更新:

sudo apt-get update
sudo apt-get upgrade

二、建立远程连接:

1安装xrdp

sudo apt-get install xrdp

2安装vnc4server

sudo apt-get install vnc4server tightvncserver

3安装xubuntu-desktop

sudo apt-get install xubuntu-desktop

3.1打开桌面显示,需要重启

sudo service lightdm start

3.2关闭桌面显示,需要重启

sudo service lightdm stop

4向xsession中写入xfce4-session

echo “xfce4-session” >~/.xsession

5开启xrdp服务

sudo service xrdp restart

三、建立FTP

1安装filezilla :

sudo apt-get install filezilla
sudo apt-get install filezilla-common

3.1本地windows10连接服务器

文件 --> 站点管理器 --> 新建站点 -->协议(SSH)-->主机(公网IP)-->登陆类型(正常)-->用户及密码(服务器用户和密码)

 

四、建立LAMP

Apache2

安装

sudo apt-get install apache2

修改html权限

sudo chmod 777 /var/www/html

重启服务

sudo service apache2 restart

修改端口

sudo vi /etc/apache2/ports.conf

让Apache支持php

sudo apt-get install libapache2-mod-php5.6

Php5.6

使用ppa增加源

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update

安装php5.6 

sudo apt-get -y install php5.6-fpm php5.6-mcrypt php5.6-mbstring php5.6-curl php5.6-cli php5.6-mysql php5.6-gd
php -v

Mysql5.7

安装mysql5.7

sudo apt-get install mysql-server mysql-client

增加Apache和php对mysql5.7的支持

sudo apt-get install libapache2-mod-auth-mysql
sudo apt-get install php5-mysql

登陆数据库

mysql -u root -p

这时数据库没有密码,直接回车进入

修改密码

set password for root@localhost = password('root1');

 

处理服务器乱码

建立日志系统

限制端口

开启防火墙

测试


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post