时间:2021-07-01 10:21:17 帮助过:23人阅读
apt-get update
sudo apt-get install apache2
默认www目录在"var/www"下
安装目录/etc/apache2/
/etc/init.d/apache2 start
或
sudo /etc/init.d/apache2 start
/etc/init.d/apache2 restart
或
sudo /etc/init.d/apache2 restart
/etc/init.d/apache2 stop
或
sudo /etc/init.d/apache2 stop
sudo vim /etc/apache2/ports.conf
sudo vim /etc/apache2/ports.conf
sudo apt-get install mysql-server
sudo apt-get install libapache2-mod-php
sudo apt-get install php5.6
sudo apt-get install php7.0
sudo apt-get install php5.6-mysql
ps -aux | grep mysqld
netstat -tl | grep mysql
会看到如下类似内容 表示安装并启动成功
tcp 0 0 :mysql :* LISTEN
修改表,登录mysql数据库,切换到mysql数据库,使用sql语句查看"select host,user from user ;"
mysql -u root -pvmware
mysql>use mysql;
mysql>update user set host = ‘%‘ where user =‘root‘;
mysql>select host, user from user;
mysql>flush privileges;
注意:最后一句很重要,目的是使修改生效.如果没有写,则还是不能进行远程连接.
2、mysql 修改配置文件,可以访问的ip
修改
bind-address = 0.0.0.0
参考博客
3、防火墙限制访问的端口
4、云服务防火墙限制访问
3、Debian / Ubuntu Linux
1.启动:/etc/init.d/mysql start
2.停止:/etc/init.d/mysql stop
3.重启:/etc/init.d/mysql restart
http://blog.csdn.net/chuck_perry/article/details/54907388
Linux上面很多新版本的软件都将配置文件分割了,这已经是一种风格了,比如说环境变量配置文件/etc/profile就有扩展配置文件夹/etc/profile.d,apache也是,除了主配置文件httpd.conf之外,http.conf还include了conf.d(不知道有没有记错)目录下面的所有以conf结尾的文件,所以你看到配置文件中的include,你就需要明白是什么意思!
最后,请觉得理解了也选个答案,别知道了答案也挂着未解答
1、使用find、locate等命令,查找所有的my.cnf文件。如果存在多个my.cnf,有一些是没有加载的,只有一个是加载的。
2、如果真正的my.cnf文件没有bind address,是你的my.cnf没有写,相当于注释掉了,你可以自己写上,然后重启mysql。
GRANT ALL PRIVILEGES ON . TO ‘root‘@‘%‘ IDENTIFIED BY ‘admin123‘ WITH GRANT OPTION;
flush privileges;
如果你想允许用户root从ip为192.168.1.104的主机连接到mysql服务器
GRANT ALL PRIVILEGES ON . TO ‘myuser‘@‘192.168.1.104‘ IDENTIFIED BY ‘admin123‘ WITH GRANT OPTION;
flush privileges;
liunx ubuntu web apache2 + php + mysql 安装
标签:启动命令 date mysql with 授权 关于 语句 /etc .net