
服务器
盗才生
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CentOS 6.5系统安装配置LAMP(Apache+PHP5+MySQL)服务器环境
准备篇:1、配置防火墙,开启80端口、3306端口vi /etc/sysconfig/iptables-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT #允许80端口通过防火墙-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j AC转载 2016-05-09 13:04:42 · 691 阅读 · 0 评论 -
MYSQL添加远程用户
添加远程用户admin密码为password grant all privileges on *.* to admin@localhost identified by 'password' with grant option grant all privileges on *.* to admin@"%" identified by 'password' with grant option原创 2016-05-09 16:16:57 · 432 阅读 · 0 评论 -
CentOs中安装和配置vsftp简明教程
一、vsftp安装篇复制代码代码如下:# 安装vsftpdyum -y install vsftpd# 启动service vsftpd start# 开启启动chkconfig vsftpd on二、vsftp相关命令之服务篇复制代码代码如下:# 启动ftp服务service vsftpd start# 查看ft转载 2016-05-09 16:50:18 · 588 阅读 · 0 评论