cd /opt
6 yum install -y httpd
7 wget dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm
8 yum localinstall mysql-community-release-el6-5.noarch.rpm
9 yum repolist all | grep mysql
10 yum install mysql-community-server
11 service mysqld start
12 service mysqld status
13 yum -y install httpd-manual mod_ssl mod_perl mod_auth_mysql
14 mysql_secure_installation
27 rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
28 rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
29 yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
30 yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof php-gd
36 chkconfig httpd on
37 chkconfig mysqld on
40 mysql_secure_installation
43 yum install vsftpd
44 cd /etc/vsftpd/
45 ls
46 nano vsftpd
47 nano vsftpd.conf
48 nano chroot_list
53 useradd -d /opt/test -s /sbin/nologin test
54 passwd test
121 service httpd restart
122 service vsftpd restart
神回复
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
小皇 回复该评论
10 yum install -y httpd
11 wget dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm
12 yum localinstall mysql-community-release-el6-5.noarch.rpm
13 yum repolist all | grep mysql
14 yum install mysql-community-server
15 yum -y install httpd-manual mod_ssl mod_perl mod_auth_mysql
16 rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
17 rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
18 yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
发布于 2016-09-27 10:34:36
小皇 回复该评论
25 chkconfig httpd on
26 chkconfig mysqld on
29 service mysqld start
30 service httpd start
31 mysql_secure_installation
32 service mysqld restart
33 service httpd restart
34 yum install vsftpd
35 cd /etc/vsftpd/
36 ls
37 nano vsftpd.conf
38 useradd -d /opt/MBS -s /sbin/nologin mbs
39 passwd mbs
40 ls
41 touch chroot_list
42 nano chroot_list
43 service vsftpd restart
发布于 2016-09-27 10:34:47
小皇 回复该评论
local_umask=021
chroot_list_enable=YES
# (default follows)
chroot_list_file=/etc/vsftpd/chroot_list
pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
pasv_enable=YES
pasv_max_port=30100
pasv_min_port=30000
发布于 2016-09-27 10:34:50
胡飞 回复该评论
发布于 2017-08-10 11:13:30
小皇 回复该评论
发布于 2017-08-11 22:48:25
胡飞 回复该评论
发布于 2017-08-10 11:14:41