Discover how to access ubuntu desktop remotely, include the articles, news, trends, analysis and practical advice about how to access ubuntu desktop remotely on alibabacloud.com
Here's how to set up an Ubuntu virtual machine to allow other machines to connect remotely. The steps here are for ubuntu12.04.Step 1: Install the XRDP protocolsudo apt-get install xrdp vnc4server xbase-clientsStep 2: Set up remote sharingOpen the desktop Sharing in the/usr/share/applications directory and set the following:650) this.width=650; "src=" Http://img.it610.com/image/info2/dbe5906dcd974fc38aae828
serverMysql-u root-p1234565. Grant permissions to the database top800Grant all privileges on top800. * to root@192.168.1.22 identified by '20140901 ';Flush privileges;6 Now you can remotely access MySQL on the serverMysql-h192.168.1.11-uroot-p123456By default, only information_schema and top800 can be accessed. top800 is the database that we grant permissions to in step 5.Solution 1,View/etc/mysql/
Here's how to set up an Ubuntu virtual machine to allow other machines to connect remotely. The steps here are for ubuntu12.04.Step 1: Install the XRDP protocolsudo apt-get install xrdp vnc4server xbase-clientsStep 2: Set up remote sharingOpen the desktop Sharing in the/usr/share/applications directory and set the following:650) this.width=650; "src=" Http://img.it610.com/image/info2/dbe5906dcd974fc38aae828
/index.html
Then, I don't know much about permission restriction.
I set all the archives under the www directory to 755 permissions, and the owner is me (of course! And convenient management)
Of course, this may cause problems, but it will be solved later.
Finally, if you want to watch a small camera remotely through the Browser, you must first start spcaserv (the server must be able to access the Internet
Tags: INIT.D init remote access MYSQ set MySQL according to comments list pre1. View the IP that the MySQL port allows access to.netstat-an| grep 3306If displayed as the following, only native access is allowed.TCP 0 0127.0. 0.1:3306 0.0. 0.0:* LISTEN2, modify the/ETC/MYSQL/MYSQL.CONF.D/MYSQLD.CNF, will be inside the127.0. 0.1
For easy installation, use the root account to log in to Ubuntu.Step1: Type the following command to install MySQL. The process is simple. Simply enter the root account password as prompted during the installation process.Step2: Check that MySQL is started after the installation is complete. Type the following commandStep3: If it is not started, type the following command to start MySQL. Then follow the Step2 and check again for MySQL running status.STEP4: Open the remote
Procedure for using navicat to remotely access MySQL
1. Modify remote access permissions
// Enter the MySQL server or use other tools
XXXX @ Ubuntu:/$ mysql-H localhost-u root-P xxxx
// Grant data access permissions to any host
Mysql> grant all privileges on database
The first step:Gedit/etc/mysql/my.cnf Found bind-address = 127.0.0.1Comment out this line, such as: #bind-address = 127.0.0.1or instead: Bind-address = 0.0.0.0Allow any IP access;Or specify an IP address yourself.Restart Mysql:sudo/etc/init.d/mysql restartStep Two:Authorized users can connect remotelyGrant all privileges on * * to [email protected] '% ' identified by ' password ' with GRANT option;Flush privileges;The first line of the command is inte
The first step:Vim/etc/mysql/my.cnf Found bind-address = 127.0.0.1Comment out this line, such as: #bind-address = 127.0.0.1or instead: Bind-address = 0.0.0.0Allow any IP access;Or specify an IP address yourself.Restart MySQL:sudo/etc/init.d/mysql RestartStep Two:Authorized users can connect remotelyGrant all privileges on * * to [email protected] '% ' identified by ' password ' with GRANT option;flush Privileges;The first line of the command is interp
The first step:Vim/etc/mysql/my.cnf Found bind-address = 127.0.0.1Comment out this line, such as: #bind-address = 127.0.0.1or instead: Bind-address = 0.0.0.0Allow any IP access;Or specify an IP address yourself.Restart Mysql:sudo/etc/init.d/mysql restartStep Two:Authorized users can connect remotelyGrant all privileges on * * to [email protected] '% ' identified by ' password ' with GRANT option;Flush privileges;The first line of the command is interp
1. Does the 3306 port not open?Use the Nestat command to view the 3306 port status:~# netstat-an | grep 3306
TCP 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
From the results, it can be seen that port 3306 is only listening on IP 127.0.0.1, so it denies access to other IPs.Workaround: Modify the/etc/mysql/my.cnf file. Open the file and find the following:# Instead of skip-networking The default is now-listen only on # localhost which are more co
Ways to allow remote users to log in to access MySQLTo use the root user from any host, password: youpassword (your root password) to connect to the MySQL server:# mysql-u Root-prootMysql>grant all privileges on * * to ' root ' @ '% ' identified by ' Youpassword ' with GRANT OPTION;After the operation, remember to perform the following command refresh permissionsFLUSH PrivilegesIf you are still unable to link, such as:Error message: Pymysql.err.Operat
Using X2go to achieve remote access to Ubuntu 14.04 desktop, VNC can also, but each connection to VNC to create a new seession, want to return to the last activity in the next remote login, need to remember the open thread, this tedious operation does not meet the needs of most people ...Reference: Linux commune: How to remotely connect to the
Ubuntu setting up the MySQL Service Remote Access tutorial, tumysql
Step 1: modify the configuration file:
Vim/etc/mysql/my. cnf
Find
Bind-address = 127.0.0.1
Changed:
Bind-address = 0.0.0.0# Allow access from any IP Address
You can also specify an IP address.
Restart MySQL:
Sudo/etc/init. d/mysqld restart
Step 2: Modify the Database Configuration:
Aut
Description
A friend asked me for help when installing MySQL with Ubuntu Server 16.04 to set up a remote access problem. However, I have not used Ubuntu to install MySQL, so search a lot of technical documents, than the gourd painting ladle. However, due to the differences in the MySQL version, there are some problems with the Setup setup: You cannot
Remote access to MySQL database in Ubuntu
BitsCN.com
MySQL remote access command
Format: mysql-h host address-u user name-p user password
Example:
Yanggang @ host :~ $ Mysql-h192.168.1.11-uroot-p123456
ERROR 2003 (HY000): Can't connect to MySQL server on '192. 168.1.11 '(192)
An error occurred! Unable to connect to the remote MySQL database
MySQL can connec
In Ubuntu, MySQL only allows local access by default. If you want other machines to remotely access this Mysql database, you need to set something. Next we will step by step: 1. modify the configuration file 1. # sudovim/etc/mysql/my. conf find bind-address = 127.0.0.1 comment out this sentence 2. Mysql database Modifi
change it to the client host IP you want to use. This way, if the remote access port of MySQL is turned on, there is a more important step to authorize the remote user. (2) Confirm whether the client user has access rights. In order to give access to the users of the MySQL client, we can authorize the user as follows: Mysql> Grant All on * * to [e-mail protected
Problem: I want to sign in to Ubuntu with Putty today, but I can't log in after entering the IP address port numberCause: Ubuntu that wants to log on remotely is not installed Openssh-serviceWorkaround: Install Openssh-serviceSpecific commands:1. Install Ubuntu is installed by default openssh-client, so it is not in
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.