How to change user password ubuntu - fiware

Good Morning.
I created a machine in fiware lab cloud and I installed graphical interface.
I'm trying to change the language, but when I try, it asks me for the ubuntu user's password. When we create the machine in fiware it does not ask to inform the password, so I do not know the password of the user ubuntu. note: can anybody help me?

I solved the problem.
I changed the ubuntu user password with this command: "sudo passwd Ubuntu"
And I created a new password. It worked for me.

The images are thought without password. This means that they are not intended to be used with a password but using a Key Pair with SSH. For security reasons.

Related

MySQL service on Windows resets password on every start

I have a local MySQL 8.0.21 server for development purpose. It's configured as Windows service. After first setup everything works fine and my root password fits well, but as soon as I stop and start this service my password becomes invalid.
Does anybody know where the problem is?

Is there a security risk running XAMPP's MySQL without changing the root password?

By default XAMPP installs MySQL with a root account that doesn't have a passphrase assigned to it. When you go to http://127.0.0.1/phpmyadmin/, however, the software warns you that you are using root without a password and that you should change it. Is that true when you are running MySQL locally? Is there any security risk involved in running a local database without a password that could give outsiders easier access to your computer or network, e.g. by opening up ports of your router?
What you see is a general warning. You can safely ignore it if you are running everything locally. However if this is a production environment, you should never use the root user and password and you should change it, and consider a secure firewall policy - which port is used by MySQL, which servers should and should not have access to it. I often see people trying to access phpmyadmin on my servers so it is indeed a risk. I personally don't install phpmyadmin on any production servers for security reasons.

How can I reset my windows server password

How can I reset my windows server password. I'm using google cloud compute engine and am trying to reset the password to login to my server. I've tried to do it using Google SDK Shell but I seem to not be doing something correct.
You can use this command to modify the Windows admin password: gcloud compute instances add-metadata [instance-name] --metadata gce-initial-windows-password=[password] --project [project-id] --zone [zone-name]
Keep in mind that in order for this to work the new password has to meet the Windows password requirements. If the password you enter doesn't meet the requirements, the metadata will be updated but the password won't update inside the Windows VM.

can't login or reset password to openshift account

openshift will not let me login or change my password. i created an account under the free openshift version at which time i could create a test app. after logging out and then trying to login it responds with a bad credentials message(password or login). i try to reset my password but i don't receive a confirmation email. i tried recreating a new account and still did not receive confirmation email. i send various help requests to to redhat but all responsees are the same asking me to verify accuracy of information, check spam box, and other things. these are robot generated responses from redhat because they do no refer to my specific help requests. i am going to give it one more try with help here, but if no luck i will move on to other paas. we are ready to deploy and can't waste time with external problems.
You can reset your openshift login password:
ssh to openshift server with root account.
type htpasswd /etc/origin/master/htpasswd username
after 2nd step it will ask for new password.
no need to restart openshift service
eg: I have username called "admin2" then my command would be:
htpasswd /etc/origin/master/htpasswd admin2
Thanks
I'm using Red Hat Openshift v3.9.30, /etc/origin/master/htpasswd was not available.
Reset password using htpasswd /etc/origin/htpasswd anto.
[root#ocp1 ~]# htpasswd /etc/origin/master/htpasswd anto
htpasswd: cannot modify file /etc/origin/master/htpasswd; use '-c' to create it
[root#ocp1 ~]# htpasswd /etc/origin/htpasswd anto
New password:
Re-type new password:
Updating password for user anto
And login was successful through https://ocp1.example.com:8443.
If you're using Windows 8's MAIL application then check your Newsletters folder. The new Outlook Windows 8 app has a fondness for miscategorizing important notification emails like this as newsletters.

ExpressionEngine Installation Issues: Database Connection Error on Localhost

Running into an odd issue with a getting a successful localhost install of ExpressionEngine 2.5.3.
I am able to run the ExpressionEngine Installation and Update Wizard where server settings, database setting and admin account information is entered. So the Apache side is working as expected, or so I assume.
The issue crops up when I click on the Install ExpressionEngine button — the point where the installer starts working it's magic — get this error:
A Database Error Occurred
Unable to connect to your database server using the provided settings.
Filename: controllers/wizard.php
Line Number: 1532
For the SQL Server Address, Username and Password, I am using the same values I have used in the past: localhost for the server address, root for the username and root for the password.
Those credentials work when used with Sequel Pro 0.9.9.1.
Permissions on config.php and database.php — both empty files — are set to 666, as suggested by the ExpressionEngine installation documentation.
I am trying this on a MacBook Air running 10.8.2 with the built-in Apache and MySQL running via XAMPP. I am using VirtualHost X to so http://baseline.loc/ points to baseline.loc in my Sites folder. There are no other instances of Apache or MySQL running.
I am not well versed debugging server issues but I am comfortable working in the terminal.
Any ideas what I should be looking at to figure out why this usually basic stage of a new project has become a stumbling block?
I've had issues before using localhost as the host. Does 127.0.0.1 work for you?
I've had similar in OSX using mamp, simply changed the folder permission of the web folder to everyone read/write via finder and that did the trick