2.cd /home/test mkdir public.cd public echo "hello 192.168.1.11">.index.html 3.打开浏览器进行测试,注意该浏览所在的ip必须为192.168.1.11 5. 配置linux下的apache服务器: 1.设置apche文档根路径为/var/www/html 2.设置服务器监听端口为8080 3.设置缺省主页文件为index.htm,并在文档主目录下写一个测试用的index.htm文件 4.设置管理员的email地址为你的邮件地址 5.启动apache服务器并进行验证 答案:1.编辑/etc/httpd/conf/httpd.conf documentroot "/var/www/html" port 8080 directoryindex index.htm serveradmin [email protected] 2.service httpd start 3.在浏览器中输入 http://serverip:8080 6. 在mysql中,建立一个用户test,口令为123456;授权他只能查询mysql库中的db表,可以查询、更新、添加、删除user表,并允许该用户从本地或者远程都可以登录mysql数据库服务器. 请进行测试. 答案:1.在mysql服务器上登录mysql 2.grant 0select on mysql.db to test@localhost identified by "123456". grant 0select on mysql.db to test@"%" identified by "123456". 3.grant 0select,0delete,0update,insert on mysql.user to test@localhost identified by "123456". grant 0select,0delete,0update,insert on mysql.user to test@"%" identified by "123456". 4.本地 mysql -u test 远程 mysql -h mysql所在ip -u test