Traceback (most recent call last): File "/cs/nginx/uwsgi/main.py", line 24, in application result = process().entry(environ, start_response) File "/cs/nginx/uwsgi/rds/base_mng.py", line 90, in entry self.process_put_request(env) File "/cs/nginx/uwsgi/rds/init_rds.py", line 149, in process_put_request result = self.do_put_request(env) File "/cs/nginx/uwsgi/rds/init_rds.py", line 140, in do_put_request err_code = op.do() File "/cs/nginx/uwsgi/rds/init_rds.py", line 70, in do if 0 == init_create_mp(mp): File "/cs/nginx/uwsgi/rds/init/main.py", line 44, in init_create_mp os.mkdir(mp,0755) OSError: [Errno 13] Permission denied: '/aaab'
使用mysql -uroot -p登陆,然后修改mysql库中的user表 update user set password_expired="N" where user="root"; update user set authentication_string=password("hnagroup") where user="root";
P1(any)为一年内第一个OSD发生故障的概率 硬盘在一定时间内的失败概率符合Possion(伯松)分布 Pn(入,t)(入为lamda),由于我们不太容易直接计算任意一个OSD顺坏的概率,但可以计算出没有OSD出现故障的概率,再用1减去无OSD节点故障的概率,就得到了P1(any) 入=FIT x N ,FIT=AFR/(24×365),AFR为硬盘年故障概率; t为一年的小时数,24x365
P2(any)为一个OSD恢复周期内第二个OSD发生故障的概率 入中的N为N-1 t 为一个OSD恢复周期,OSD恢复周期 = 恢复数据量 / 恢复速度;恢复数据量 = 硬盘容量 x 使用率;恢复速度 = 每个OSD写速度 x 参与恢复的OSD数量
P3(any)为一个OSD恢复周期内第三个OSD发生故障的概率 入中的N为N-2 t 为一个OSD恢复周期,算法同上
# system default: set cfq scheduler for rotating disks ACTION=="add|change",KERNEL=="sd[a-z]",ATTR{queue/rotational}=="1",ATTR{queue/scheduler}="deadline" ACTION=="add|change",KERNEL=="sd[a-z]",ATTR{queue/rotational}=="0",ATTR{queue/scheduler}="noop"