ZM Viewers problem
ZM Viewers problem
Hello, I'm trying to use the zm4ms, zmviewer and oter to get a stream of my remote zm server, but I can't gei the to work. They ask me for a username and password, I had tried every password I have, varios zm users, zm admin, mysql root, but no one works, I always get "acces denied to DREMA@remoteserver.org".
I'm using zm 1.23 on Ubuntu intrepid.
Any help please???
I'm using zm 1.23 on Ubuntu intrepid.
Any help please???
Hello!
The only password required are the mysql database password to access event data and a password for the zoneminder it self.
Usually, mysql username is "root" and the password is the one you have setup during installation.
The username/password for zone minder is the one you use in the html interface.
Recently I start using a new client: JZMC.
It is in the initial development, but already very usable.
Check out this post:
http://www.zoneminder.com/forums/viewtopic.php?t=12606
Hope it helped.
Regards.
The only password required are the mysql database password to access event data and a password for the zoneminder it self.
Usually, mysql username is "root" and the password is the one you have setup during installation.
The username/password for zone minder is the one you use in the html interface.
Recently I start using a new client: JZMC.
It is in the initial development, but already very usable.
Check out this post:
http://www.zoneminder.com/forums/viewtopic.php?t=12606
Hope it helped.
Regards.
Hi Caladeira, thanks for your help!
Locally I can conect to the mysql server with no problem, but when I try to "mysql -h my mysqlserver.com -u root -p" I got "ERROR 1130 (00000): Host '189.xxx.xxx.xxx' is not allowed to connect to this MySQL server" so its clear for me that i cant get remote/localnetwork connection on this server, so how do I enable connections to my server?
I repeat, I'm using Ubuntu Intrepid32.
Thanks again.
Locally I can conect to the mysql server with no problem, but when I try to "mysql -h my mysqlserver.com -u root -p" I got "ERROR 1130 (00000): Host '189.xxx.xxx.xxx' is not allowed to connect to this MySQL server" so its clear for me that i cant get remote/localnetwork connection on this server, so how do I enable connections to my server?
I repeat, I'm using Ubuntu Intrepid32.
Thanks again.
Well, I'm not a mysql expert, not even close!
I think you should look your firewall settings and mysql configuration files.
You mention Ubuntu Intrepid, but which version Server or Desktop?
Some people use desktop versions for server work because of a more user friendly interface.
I think firewall have different settings where you are using Ubuntu Server or Desktop.
Hopefully, some mysql expert read this post and post some solution.
Best regards.
I think you should look your firewall settings and mysql configuration files.
You mention Ubuntu Intrepid, but which version Server or Desktop?
Some people use desktop versions for server work because of a more user friendly interface.
I think firewall have different settings where you are using Ubuntu Server or Desktop.
Hopefully, some mysql expert read this post and post some solution.
Best regards.
-
- Posts: 5111
- Joined: Wed Jun 08, 2005 8:07 pm
- Location: Midlands UK
you will need to tell mysql to listen on ip.
comment out 'skip netowrking' in the my conf file
comment out 'skip netowrking' in the my conf file
James Wilson
Disclaimer: The above is pure theory and may work on a good day with the wind behind it. etc etc.
http://www.securitywarehouse.co.uk
Disclaimer: The above is pure theory and may work on a good day with the wind behind it. etc etc.
http://www.securitywarehouse.co.uk
The user accessing the database from outside needs the correct permission.
In mysql shell use:
Replace $_ with your real data.
The symbol % gives the user access from anywhere only on zm mysql database. If you have a static outside ip or a subnet you could also use it.
Regards.
In mysql shell use:
Code: Select all
GRANT ALL on $_zm_database_name.* to $_your_username@'%' identified by '$_password';
The symbol % gives the user access from anywhere only on zm mysql database. If you have a static outside ip or a subnet you could also use it.
Regards.