Tagged: ucloudbiz

a voice of the costomer


비용을 지불하고 사용하는 서비스임에도 불구하고 VOC가, 대기업 특성상, 아주 더럽게(?) 사용될 수도 있다는 생각에 차마 SEND 버튼을 누르지는 못하였다. 아직 충분히 늙지 않았나보다.

고객센터에서 전화 응대를 받는 사람들은 문제가 없는데,

장애가 발생 문의 후 전화하는 새끼들은 싸가지가 장난이 아니다. 이건 뭐… 같은 회사 옆 부서 새끼가 툭툭대면서 전화하는 것 같다.

장애를 고치고도 (뭐 빨리 해 줄 필요도 없었는데) 우리가 마음이 좋아서 고쳐줬다.
확인해 보시든가…. 뭐 이런 자세다.

애시당초 “고쳐는 드릴께..!” 뭐 이런 느낌?

=====================================================================
두 가지를 문의드렸었습니다.

하나는 Cloud Console 에서 reseller 용 사용자 관리메뉴를 여쭤봤고
두번째는 uc????s????e-sdk에서 어떤 API를 사용하면 될지를 여쭤봤습니다.

언급하신 PDF의 해당 위치에 제가 문의드린 사항에 대한 설명이 있나요?

아래처럼 대답을 주셔야 하는 거 아닌가요?

현재 리셀러들을 위한 UI는 별도로 준비되어 있지 않습니다.
또한 uc??????-sdk 에도 해당 서비스에 대한 client API 가 준비되어 있지 않습니다.
API 를 이용한 연동방법은 아래 메뉴얼의 “제 7 장 Reseller service.” 를 참고하시기 바랍니다.

Click to access

문의하기 답변 제목 : Re: 리셀러 서비스에서 사용자(user)를 추가/갱신/삭제 할 수 있는 메뉴는 어디에 있나요
K? uc???? ????er를 사용해 주셔서 감사합니다.
문의하신 내용에 대한 답변을 드립니다.
[답변내용]
아래 메뉴얼의 “제 7 장 Reseller service.” 를 참고 부탁 드립니다.

Click to access

추가적인 문의 사항이 있으시면 재문의 주시기 바랍니다.
감사합니다.
답변 내용 이외의 응대에 대한 불만족 사항은 uc????b-??c@k?.?으로 보내주시기 바랍니다.

olleh ucloud biz ubuntu data disk


references

fdisk

host:~$ ls -l /dev/xvd*
brw-rw---- 1 root disk 202,  0 2012-09-18 12:15 /dev/xvda
brw-rw---- 1 root disk 202,  1 2012-09-18 12:15 /dev/xvda1
brw-rw---- 1 root disk 202,  2 2012-09-18 12:15 /dev/xvda2
brw-rw---- 1 root disk 202, 16 2012-09-18 12:15 /dev/xvdb
host:~$ sudo fdisk /dev/xvdb
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel with disk identifier 0xec499834.
Changes will remain in memory only, until you decide to write them.
After that, of course, the previous content won't be recoverable.

Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)

WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
         switch off the mode (command 'c') and change display units to
         sectors (command 'u').

Command (m for help): n
Command action
   e   extended
   p   primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-10443, default 1):
Using default value 1
Last cylinder, +cylinders or +size{K,M,G} (1-10443, default 10443):
Using default value 10443

Command (m for help): w
The partition table has been altered!

Calling ioctl() to re-read partition table.
Syncing disks.
host:~$

mkfs

host:~$ sudo mkfs /dev/xvdb1 -t ext4
host:~$

/etc/fstab

host:~$ sudo mkdir /data
host:~$ mount /dev/xvdb1 /data -t ext4
host:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system>                           <mount point>   <type>  <options>           <dump>  <pass>
proc                                      /proc           proc    nodev,noexec,nosuid 0       0
# / was on /dev/xvda1 during installation
UUID=blar blar blar                       /               ext3    errors=remount-ro   0       1
# swap was on /dev/xvda2 during installation
UUID=blar blar blar                       none            swap    sw                  0       0

/dev/xvdb1                                /data           ext4    defaults            0       0
host:~$ shutdown -r now
host:~$

olleh ucloud biz ubuntu account


KT olleh ucloud biz 서버를 구매하면 기본으로 root 계정을 사용하게끔 되어 있는 것 같다.

add new adminsudo user

root@xxx:~$ useradd <username> -m -s /bin/bash
root@xxx:~$ passwd <username>
Password:
Retype new password:
passwd: password updated successfully
root@xxx:~$ adduser <username> sudo
Adding user `<username>' to group 'sudo' ...
Adding user <username> to group sudo
Done.
root@xxx:~$

disable root account

username@host:~$ sudo passwd -l root
passwd: password expiry information changed.
username@host:~$