search
HomeBackend DevelopmentPHP TutorialA simple guide to setting up a LAMP vsftpd environment on CentOS, centosvsftpd_PHP tutorial

A simple guide to setting up a LAMP vsftpd environment on CentOS, centosvsftpd

VPS can be regarded as a server that only you use (in fact, it is a virtual machine) , you can install any software on it with maximum permissions. As the saying goes, with greater authority comes greater responsibility. You need to install the web server, database, PHP, and other maintenance work yourself.

The operating system provided by most VPS now is Linux, and it does not have a graphical interface. It only provides an SSH command line interface, so you need to know some simple Linux command lines. Linux has many distributions. The best distribution may be Redhat, but it is commercial software and cannot be used for free. Fortunately, it also has a community version CentOS, which completely uses the source code of Redhat and removes the Redhat LOGO. Replace it with your own and remove some closed source software, so the system functions, performance and stability are almost the same as Redhat, so I chose it.
Install Linux

For Linux installation, you can choose a distribution you are familiar with such as Ubuntu, Debian, Fedora, etc. The service provider will install it by default in a minimal installation mode. The version I chose is CentOS 6.3, taking into account the VPS memory Smaller, the 32-bit version is installed.

After installation, log in as the root user and allow the system to perform some necessary updates. Both Linux and Mac come with Terminal. If it is Windows, it is recommended to use PuTTY for SSH connection.

#以 root 用户登陆服务器
ssh root@198.xxx.xxx.xxx
...
#系统更新
yum update
...

Install Apache

Apache is an old free and open source web server on the Linux platform. It is said that more than half of the websites in the world run on Apache. To install Apache, enter the following command at the command line:

yum install httpd

The Apache installed by default may not be the latest version, but it is the most stable version tested on this Linux version. If you must install the latest version, you need to download the latest version from the Apache official website.

After installation, execute the following command to start the Apache service:

service httpd start

The default web page storage directory is located in /var/www/html/, and then visit http://198.xxx.xxx.xxx in the browser. If a test page of Apache can appear, it means that Apache has been installed successfully. .
Install MySQL

MySQL is a very popular database software. It was originally developed by the Swedish company MySQL AB and was later acquired by Sun. It is currently a product of Oracle. The command to install MySQL is as follows:

yum install mysql-server

Start the MySQL service:

service mysqld start

Then you need to set a password for the MySQL root user. You can enter the following command:

/usr/bin/mysql_secure_installation

If you execute the above command, MySQL will ask you to provide the password of the current root user. Because we have just installed it, the password is empty. Just press Enter and set the new root user password.

There will then be some security options asking you to choose Y or N. For example, whether to remove anonymous login, whether to prevent root users from logging in remotely, if you select y, then root can only log in through localhost, and whether to remove the test database, refresh the permission table immediately, etc. The general situation is as follows:

[root@CentOS6 ~]# /usr/bin/mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
   SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!


In order to log into MySQL to secure it, we'll need the current
password for the root user. If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.

Set root password? [Y/n] y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y
 ... Success!

Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y
 ... Success!

By default, MySQL comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
 ... Success!

Cleaning up...



All done! If you've completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!

Install PHP

PHP is a widely used open source dynamic scripting language. To install PHP and make it work with MySQL, you need to execute the following command:

yum install php php-mysql

At this time, you need to test whether PHP can work properly. You can create a test page.

#切换到 Apache 默认网页目录
cd /var/www/html
#创建一个 php 脚本文件
touch phpinfo.php
#向文件写入一小段 php 脚本,测试用
echo '<&#63;php phpinfo(); &#63;>' > phpinfo.php
<p># 因为刚刚安装了 PHP,所以别忘了重启一下 Apache,否则 PHP 不能正常工作<br />service httpd restart</p>

Then visit http://198.xxx.xxx.xxx/phpinfo.php in the browser to see if PHP is working normally.

If the page can display server-related environment information normally, it means that the LAMP environment is working normally.
Install vsftpd

To securely upload files to the server or download files from the server, the easiest way is to use FTP. Here we choose the very popular "Very Secure FTPD" under Linux, that is, very secure FTP:

yum install vsftpd

After installation, you still need to perform some simple configuration:

#编辑 vsftpd 配置文件
vi /etc/vsftpd/vsftpd.conf
...

#不允许匿名登陆
anonymous_enable=NO

#本地账户可以登陆
local_enable=YES

#可以写入
write_enable=YES

#所有用户只能访问其 home 目录
chroot_local_user=YES
...

#重启 vsftpd 以上设置才能生效
service vsftpd restart

How to access the server using FTP protocol? Here we recommend the FTP client tool FileZilla, which is available in Windows, Linux and Mac OS versions.

Login to vsftpd usually uses the Linux user area to log in, but the root user is not allowed to log in, so you need to create a new Linux user:

#添加用户 lichao
adduser lichao

#为 lichao 设置密码
passwd lichao

#如果出于安全考虑,这个用户你只想它能登陆 vsftpd,
#而不能以 ssh 方式登陆服务器,可以禁止其 ssh 登陆
usermod -s /sbin/nologin lichao

At this point, you can use any FTP tool such as FileZilla to log in to vsftpd with the user lichao and the corresponding password. The default directory is /home/lichao
Set up Apache, MySQL and vsftpd services to start at boot

The command to set them up at startup is as follows:

chkconfig httpd on
chkconfig mysqld on
chkconfig vsftpd on

PHP will be started with Apache.

At this point, a basically complete dynamic web server, database server, and FTP server are installed.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1041627.htmlTechArticleA simple guide to setting up a LAMP vsftpd environment on CentOS, centosvsftpd VPS can be regarded as a machine that only you can use server (actually it is a virtual machine) on which you can...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
centos用什么命令可查版本号centos用什么命令可查版本号Mar 03, 2022 pm 06:10 PM

查版本号的命令:1、“cat /etc/issue”或“cat /etc/redhat-release”,可输出centos版本号;2、“cat /proc/version”、“uname -a”或“uname -r”,可输出内核版本号。

centos重启网卡的方法是什么centos重启网卡的方法是什么Feb 22, 2023 pm 04:00 PM

centos重启网卡的方法:1、对于centos6的网卡重启命令是“service network restart”;2、对于centos7的网卡重启命令是“systemctl restart network”。

centos php怎么安装opcachecentos php怎么安装opcacheJan 19, 2023 am 09:50 AM

centos php安装opcache的方法:1、执行“yum list php73* | grep opcache”命令;2、通过“yum install php73-php-opcache.x86_64”安装opcache;3、使用“find / -name opcache.so”查找“opcache.so”的位置并将其移动到php的扩展目录即可。

centos 怎么离线安装 mysqlcentos 怎么离线安装 mysqlFeb 15, 2023 am 09:56 AM

centos离线安装mysql的方法:1、将lib中的所有依赖上传到linux中,并用yum命令进行安装;2、解压MySQL并把文件复制到想要安装的目录;3、修改my.cnf配置文件;4、复制启动脚本到资源目录并修改启动脚本;5、将mysqld服务加入到系统服务里面;6、将mysql客户端配置到环境变量中,并使配置生效即可。

centos 7安装不出现界面怎么办centos 7安装不出现界面怎么办Jan 03, 2023 pm 05:33 PM

centos7安装不出现界面的解决办法:1、选择“Install CentOS 7”,按“e”进入启动引导界面;2、 将“inst.stage2=hd:LABEL=CentOS\x207\x20x86_64”改为“linux dd”;3、重新进入“Install CentOS 7”,按“e”将“hd:”后的字符替换成“/dev/sdd4”,然后按“Ctrl+x”执行即可。

centos 怎么删除 phpcentos 怎么删除 phpFeb 24, 2021 am 09:15 AM

centos删除php的方法:1、通过“#rpm -qa|grep php”命令查看全部php软件包;2、通过“rpm -e”命令卸载相应的依赖项;3、重新使用“php -v”命令查看版本信息即可。

centos中ls命令不显示颜色怎么办centos中ls命令不显示颜色怎么办Apr 20, 2022 pm 03:16 PM

方法:1、利用“vim ~/.bashrc”编辑用户目录(~)下的“.bashrc”文件;2、在文件内添加“alias ls="ls --color"”;3、利用“:wq!”命令保存文件内的更改;4、“exit”命令退出终端后重新连接即可。

如何在 CentOS 9 Stream 上安装 Nagios如何在 CentOS 9 Stream 上安装 NagiosMay 10, 2023 pm 07:58 PM

我们的PC中有一个磁盘驱动器专门用于所有与Windows操作系统相关的安装。该驱动器通常是C驱动器。如果您还在PC的C盘上安装了最新的Windows11操作系统,那么所有系统更新(很可能是您安装的所有软件)都会将其所有文件存储在C盘中。因此,保持此驱动器没有垃圾文件并在C驱动器中拥有足够的存储空间变得非常重要,因为该驱动器拥有的空间越多,您的Windows11操作系统运行起来就越顺畅。但是您可以在磁盘驱动器上增加多少空间以及可以删除多少文件是有限制的。在这种情况下,

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use