Tim Ke

博客园 首页 新随笔 联系 订阅 管理

2007年11月11日 #

摘要: 在gcc 4.0.3上,下面这段代码会产生invalid use of constructor as a template的编译错误 template class handle_t { inline handle_t(const handle_t& another); }; template handle_t::handle_t(const handle_t& another) { }... 阅读全文
posted @ 2007-11-11 22:16 Tim Ke 阅读(340) 评论(0) 推荐(0) 编辑

摘要: 安装apache: $ sudo apt-get install apache2 然后访问http://hostname/确认安装成功. 让apache支持ssl: $ sudo apache2-ssl-certificate $ cd /etc/apache2/ $ sudo cp sites-available/default sites-available/ssl $ sudo ln -s... 阅读全文
posted @ 2007-11-11 00:10 Tim Ke 阅读(679) 评论(0) 推荐(0) 编辑

2007年11月10日 #

摘要: 运行一下命令安装mysql. $ sudo apt-get install mysql-server 设置root密码: $ sudo /etc/init.d/mysql reset-password 让root可以远程登陆: 登陆mysql控制台,然后运行: mysql> use mysql; mysql> update `user` set `host`="localhost" and `... 阅读全文
posted @ 2007-11-10 23:44 Tim Ke 阅读(561) 评论(0) 推荐(0) 编辑

摘要: $ sudo apt-get install nagios-text $ sudo htpasswd -c /etc/nagios/htpasswd.users nagiosadmin 然后按提示输入密码. 用户名nagiosadmin及输入的密码即为登陆http://hostname/nagios/的用户名和密码. 阅读全文
posted @ 2007-11-10 22:44 Tim Ke 阅读(541) 评论(0) 推荐(0) 编辑