Ubuntu Server 10.0.4+Apache 下配置 mono 下运行 asp.net(4)

我们可以用下面命令来查看mono版本信息

mono -V

Ubuntu Server 10.0.4+Apache 下配置 mono 下运行 asp.net



Ok,现在我们的apache+mono已经可以执行asp.net文件了.后面我们将进行稍复杂的测试.


下面我们来安装配置 MySQL,这部分简单说明一下,网上有很多教程

sudo apt-get install mysql-server


安装过程中会提示你输入root帐户密码.

安装完成后,登陆mysql,我们以root登陆.

mysql -u root -

创建一个测试用户AAA,密码123456,该只对数据库Test有全部权限

grant all privileges on Test.* to AAA@localhost identified by "123456"

至于mysql的管理命令,大家去网上搜吧,这里不多说了.

现在我们用客户端(windows)来连接mysql,我用的是Navicat Lite(免费版),基本操作感觉够用了.

Ubuntu Server 10.0.4+Apache 下配置 mono 下运行 asp.net


如需要允许外部连接,则需要修改mysql下的配置文件/etc/mysql/my.cnf,将bind-networking去掉

linux

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wygszp.html