参考
http://www.centoscn.com/CentosBug/softbug/2016/0115/6660.html
http://jingyan.baidu.com/article/3d69c5518e82e3f0cf02d7ea.html
http://www.jb51.net/os/188488.html
首先为了搭建一个稳定的lamp的练习环境,确保你的虚拟机可以连网,这里我们使用的yum安装,它可以帮助我们解决软件自己的依赖关系.我还在后面加了postgresql数据库如果不需要的话可以去掉和postgresql的参数.命令如下
yum -y install httpd mysql mysql-server php php-mysql postgresql postgresql-server php-postgresql php-pgsql php-devel
启动apache服务并查看时候启动成功
命令如下:(切记用root用户启动服务)
启动:/etc/rc.d/init.d/httpd start
检测启动结果:ps aux | grep httpd
查看服务器的ip并进入网站根目录新建一个phpinfo.php的程序,用于查看php相关配置信息。
如果上述进展顺利,那我们接下来进行mysql数据库的配置
命令如下:
启动: /etc/rc.d/init.d/mysqld start
检查启动结果: netstat -tulnp | grep :3306
修改root密码: mysqladmin -u root password ‘你想设置的密码’
MariaDB数据库管理系统是MySQL的一个分支,主要由开源社区在维护,采用GPL授权许可。开发这个分支的原因之一是:甲骨文公司收购了MySQL后,有将MySQL闭源的潜在风险,因此社区采用分支的方式来避开这个风险。[3]
MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能轻松成为MySQL的代替品。在存储引擎方面,10.0.9版起使用XtraDB(名称代号为Aria)来代替MySQL的InnoDB
# yum install mysql -y
# mysql
ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.soc
试着去启动mysql服务,仍然不行
# systemctl start mysql
Failed to issue method call: Unit mysql.service failed to load: No such file or directory.
# systemctl start mysql.service
Failed to issue method call: Unit mysql.service failed to load: No such file or directory
# systemctl enable mysql.service
Failed to issue method call: Access denied
下面讲正确的步骤
# yum install mariadb-server -y
# systemctl start mariadb.service
# systemctl enable mariadb.service
# mysql
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 10
Server version: 5.5.44-MariaDB MariaDB Server
Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
搞定!
grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option;
flush privileges
UPDATE user SET Password = password ( 'new-password' ) WHERE User = 'root' ;
# yum install mariadb-server -y
# systemctl start mariadb.service # systemctl enable mariadb.service # mysql
/bin/systemctl start httpd.service
绑定域名
编辑/etc/httpd/conf/httpd.conf 加入
<VirtualHost yourip:80>
DocumentRoot /var/www/html/yourdomain
ServerName yourdomain
ServerAlias *.yourdomain
</VirtualHost>
centos 搭建ftp 服务器
安装vsftpd:
yum install vsftpd
启动vsftpd:
systemctl start vsftpd.service
设置vsftpd开机自启动:
systemctl enable vsftpd.service
https://www.yanning.wang/archives/184.htmlhttps://www.yanning.wang/archives/184.html
解决root用户无法登陆问题
http://blog.csdn.net/xxd851116/article/details/6346760