반응형




최신 Microsoft Remote Desktop 으론  접속 불가!!



https://github.com/neutrinolabs/xrdp/issues/246


karas84 commented 

@timnolte for Android I'm using an old version (8.0.5.24406) of the Microsoft Remote Desktop client that seems to be working with xrdp. You can find the apk around by googling it or ask me if you can't find it.


아우 개삽질 XXXX 


Microsoft Remote Desktop 8.0.5.24406 APK 


요 버젼으로 다운로드 하여 연결하니 바로 성공 !!! 

접속 방법은 정리 해서 올려야 겠다.

1년 6만6천원 짜리 가상 서버 호스팅(리눅스 CentOS 6.5) 사용 중이다.
활용할 방법이 없을까 하다..

회사는 보안으로 다 막혀 있어서 ssh도 접근 불가  ㅠㅠ
하지만 나는 S2 9.7 LTE 테블릿이 있지 ㅎㅎㅎ

리눅스로 노는게 재미있어서 lte 테블릿을 활용하여 꾸준히 공부할 생각

* 가상 서버 호스팅 사용
1. 리눅스  xwindow 설치
2. xrdp 설치
3. 방화벽 해지 / 포트 포워딩
4. 구버젼 MRD 8.0.5.24406 사용 하여 접속 하기


정리 하기 구찮 ㅠㅠ

반응형
반응형

http://tecadmin.net/steps-to-install-java-on-centos-5-6-or-rhel-5-6/



32bit 용 jdk


# cd /opt/
# wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/7u75-b13/jdk-7u75-linux-i586.tar.gz"


반응형
반응형



Here is your custom MariaDB YUM repository entry for CentOS. Copy and paste it into a file under /etc/yum.repos.d/ (we suggest naming the file MariaDB.repo or something similar).

VI 로 해당 파일 만든다

vi  /etc/yum.repos.d/mariaDB.repo

# MariaDB 5.5 CentOS repository list - created 2014-12-16 08:14 UTC # http://mariadb.org/mariadb/repositories/ [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/5.5/centos7-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1

저장 !wq

After the file is in place, install MariaDB with:

sudo yum install MariaDB-server MariaDB-client


 root 패스워드와 외부 접속 설정

Mariadb root password 변경은 다음과 같이 진행합니다.

[admin@localhost ~]$ /usr/bin/mysql -u root mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 5.5.40-MariaDB MariaDB Server

Copyright (c) 2000, 2014, Oracle, Monty Program Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [mysql]> update user set password=password('opennaru') where user='root';
Query OK, 4 rows affected (0.00 sec)
Rows matched: 4  Changed: 4  Warnings: 0

MariaDB [mysql]> flush privileges;
Query OK, 0 rows affected (0.00 sec)

MariaDB [mysql]> quit
Bye 


1. MySQL(Maria DB) 로 접속 한다.

2. use mysql 명령어를 입력한다.

3. grant all privileges on *.* to 'root'@'%' identified by '비밀번호'; 입력한다.

4. flush privileges; 입력한다.

5. my.cnf 파일 내용중에서 bind-address =127.0.0.1 을 주석(#)처리 하고 저장한다.
     bind-address = 127.0.0.1 => #bind-address = 127.0.0.1


정리 


-  mysql 서버 로그인하기

 $ mysql -uroot -prootpassword mysql


- 다른 PC에서 mysql 서버로 접속을 하기 위한 사용자 추가

 mysql> create user 'nayha'@'%' identified by 'password';


GRANT ALL PRIVILEGES ON salesman.* TO dbuser@IP IDENTIFIED BY '패스워드' WITH GRANT OPTION;

GRANT ALL PRIVILEGES ON imidb.* TO dbuser@localhost IDENTIFIED BY '패스워드' WITH GRANT OPTION;


- 위 사용자에게 모든 것을 할 수 있는 권한 주기

 mysql> grant all privileges on *.* to 'nayha'@'%';


- 위 사용자에게 특정 DB를 관리할수 있는 권한 주기

 mysql> grant all privileges on dev_test.* to 'nayha'@'%';

 mysql> grant all privileges on salesman.* to 'nayha'@'%';


- 로컬PC에서 mysql로 접속하기 위한 사용자 추가

 mysql> create user 'local'@'localhost' identified by 'userpassword';


- 위 사용자에게 모든 것을 할 수 있는 권한 주기

 mysql> grant all privileges on *.* to 'userid'@'localhost';


- 위 사용자에게 특정 DB를 관리할 수 있는 권한 주기

 mysql> grant all privileges on dbname.* to 'userid'@'localhost';



반응형

+ Recent posts